public function testCanSliceAString() { $string = Str::slice('abcdef', 'c'); return $this->assertEquals(['ab', 'cdef'], $string); }