summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/MM_Any.t
blob: 731c9767fca4a6475cee1cc70a03e98212c0ba2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/perl -w

BEGIN {
    unshift @INC, 't/lib';
}
chdir 't';

use Test::More tests => 7;
BEGIN { use_ok('ExtUtils::MM') }


### OS Flavor methods

can_ok( 'MM', 'os_flavor', 'os_flavor_is' );

# Can't really know what the flavors are going to be, so we just
# make sure it returns something.
my @flavors = MM->os_flavor;
ok( @flavors,   'os_flavor() returned something' );

ok( MM->os_flavor_is($flavors[rand @flavors]),
                                          'os_flavor_is() one flavor' );
ok( MM->os_flavor_is($flavors[rand @flavors], 'BogusOS'),
                                          '    many flavors' );
ok( !MM->os_flavor_is('BogusOS'),        '    wrong flavor' );
ok( !MM->os_flavor_is(),                 '    no flavor' );