예제 #1
0
 public function test_string_without_words_does_not_produce_error()
 {
     $nbsp = chr(0xc2) . chr(0xa0);
     $this->assertEquals(' ', Str::words(' '));
     $this->assertEquals($nbsp, Str::words($nbsp));
 }