summaryrefslogtreecommitdiff
path: root/ext/Term-UI/t/00_load.t
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Term-UI/t/00_load.t')
-rw-r--r--ext/Term-UI/t/00_load.t14
1 files changed, 14 insertions, 0 deletions
diff --git a/ext/Term-UI/t/00_load.t b/ext/Term-UI/t/00_load.t
new file mode 100644
index 0000000000..aacd60f711
--- /dev/null
+++ b/ext/Term-UI/t/00_load.t
@@ -0,0 +1,14 @@
+use Test::More 'no_plan';
+use strict;
+
+BEGIN {
+ chdir 't' if -d 't';
+ use File::Spec;
+ use lib File::Spec->catdir( qw[.. lib] );
+}
+
+my $Class = 'Term::UI';
+
+use_ok( $Class );
+
+diag "Testing $Class " . $Class->VERSION unless $ENV{PERL_CORE};