summaryrefslogtreecommitdiff
path: root/t/000-load.t
diff options
context:
space:
mode:
Diffstat (limited to 't/000-load.t')
-rw-r--r--t/000-load.t15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/000-load.t b/t/000-load.t
new file mode 100644
index 0000000..e9e073d
--- /dev/null
+++ b/t/000-load.t
@@ -0,0 +1,15 @@
+use strict;
+use warnings;
+use Test::More 0.88;
+
+use lib 't/lib';
+
+use Module::Implementation 0.04 ();
+
+use_ok 'Test::Class::Load';
+
+diag( 'Using '
+ . Module::Implementation::implementation_for('Class::Load')
+ . ' implementation' );
+
+done_testing;