~ubuntu-branches/ubuntu/lucid/libuniversal-moniker-perl/lucid

« back to all changes in this revision

Viewing changes to t/moniker.t

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Quinney
  • Date: 2004-02-25 16:19:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040225161907-6bjodpppfrw9bshs
Tags: upstream-0.07
ImportĀ upstreamĀ versionĀ 0.07

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl
 
2
use Test::More tests => 4;
 
3
 
 
4
require_ok 'UNIVERSAL::moniker';
 
5
is Bpm::User->moniker, "user";
 
6
is +(bless {}, "Bpm::Customer")->moniker, "customer";
 
7
 
 
8
SKIP: {
 
9
        skip "You don't seem to have Lingua::EN::Inflect installed", 1
 
10
                unless eval {require Lingua::EN::Inflect};
 
11
        is Bpm::Octopus->plural_moniker, "octopuses";
 
12
}