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