File: sys.t

package info (click to toggle)
perlbrew 1.02-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 752 kB
  • sloc: perl: 9,387; makefile: 7; sh: 1
file content (14 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use Test2::V0;

use App::perlbrew;

subtest 'sys', sub {
    my $o = App::perlbrew->new();
    is $o->can("sys"), T();
    is $o->sys->os(), D();
    is $o->sys->arch(), D();
    is $o->sys->osname(), D();
    is $o->sys->archname(), D();
};

done_testing;