The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Acme::Lingua::EN::Inflect::Modern qw(PL_N classical);
use Test::More 'no_plan';

# DEFAULT...

is PL_N('wildebeest') => "wildebeest's";       # classical 'herd' not active

# HERD PLURALS ACTIVATED...

classical 'herd';
is PL_N('wildebeest') => 'wildebeest';         # classical 'herd' active

# OTHER CLASSICALS NOT ACTIVATED...

is PL_N('person')      => 'people';             # classical 'persons' not active
is PL_N('formula')     => "formula's";          # classical 'ancient' not active
is PL_N('error', 0)    => "error's";            # classical 'zero' not active
is PL_N('Sally')       => "Sally's";            # classical 'names' active
is PL_N('brother')     => "brother's";          # classical 'all' not active