예제 #1
0
 public function itShouldRemoveAccentsFromStrings()
 {
     $string = "É uma string. Não pode ter acentos.";
     $without_accents = Ra_StringHelper::remove_accents($string);
     $this->spec($without_accents)->should->be("E uma string. Nao pode ter acentos.");
 }