|
Lines 23-29
foreach my $string ("Leçon","modèles") {
Link Here
|
| 23 |
ok($results[0] eq $string,"$string is not modified"); |
23 |
ok($results[0] eq $string,"$string is not modified"); |
| 24 |
} |
24 |
} |
| 25 |
|
25 |
|
| 26 |
foreach my $string ("Les chaussettes de l'archiduchesse") { |
26 |
foreach my $string ("A book about the stars") { |
| 27 |
my @results=C4::Search::_remove_stopwords($string,"kw"); |
27 |
my @results=C4::Search::_remove_stopwords($string,"kw"); |
| 28 |
$debug && warn "$string ",Dump(@results); |
28 |
$debug && warn "$string ",Dump(@results); |
| 29 |
ok($results[0] ne $string,"$results[0] from $string"); |
29 |
ok($results[0] ne $string,"$results[0] from $string"); |
| 30 |
- |
|
|