Lines 68-74
my @expected = (
Link Here
|
68 |
msgid => '"with filter"', |
68 |
msgid => '"with filter"', |
69 |
}, |
69 |
}, |
70 |
{ |
70 |
{ |
71 |
msgid => '"filter singular"', |
71 |
msgid => '"filter singular"', |
72 |
msgid_plural => '"filter plural"', |
72 |
msgid_plural => '"filter plural"', |
73 |
}, |
73 |
}, |
74 |
); |
74 |
); |
Lines 81-84
for ( my $i = 0 ; $i < @expected ; $i++ ) {
Link Here
|
81 |
} |
81 |
} |
82 |
} |
82 |
} |
83 |
|
83 |
|
84 |
is(@$pot, 1 + @expected, "No more strings than expected"); |
84 |
is( @$pot, 1 + @expected, "No more strings than expected" ); |
85 |
- |
|
|