File: 00_load.t

package info (click to toggle)
libterm-ui-perl 0.50-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: perl: 451; makefile: 2
file content (18 lines) | stat: -rwxr-xr-x 268 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env perl

use strict;
use warnings;

BEGIN {
    chdir 't' if -d 't';
    use File::Spec;
}

use Test::More 'tests' => 1;

my $Class = 'Term::UI';

use_ok( $Class );

diag "Testing $Class " . $Class->VERSION . ", Perl $], $^X"
  unless $ENV{ 'PERL_CORE' };