View | Details | Raw Unified | Return to bug 13579
Collapse All | Expand All

(-)a/t/db_dependent/www/history.t (-3 / +2 lines)
Lines 61-67 my $encoded_latin_name = Encode::encode('UTF-8', 'Frédéric Demians'); Link Here
61
my $encoded_cyrillic_name = Encode::encode('UTF-8', 'Сергій Дубик');
61
my $encoded_cyrillic_name = Encode::encode('UTF-8', 'Сергій Дубик');
62
my $history_page          = Encode::encode('UTF-8', $agent->text());
62
my $history_page          = Encode::encode('UTF-8', $agent->text());
63
63
64
ok( $history_page =~ m/$encoded_latin_name/, "Latin characters with umlauts show correctly on the history page." );
64
like( $history_page, qr/$encoded_latin_name/, "Latin characters with umlauts show correctly on the history page." );
65
ok( $history_page =~ m/$encoded_cyrillic_name/, "Cyrillic characters with umlauts show correctly on the history page." );
65
like( $history_page, qr/$encoded_cyrillic_name/, "Cyrillic characters with umlauts show correctly on the history page." );
66
66
67
1;
67
1;
68
- 

Return to bug 13579