summaryrefslogtreecommitdiff
path: root/t/00-load.t
diff options
context:
space:
mode:
Diffstat (limited to 't/00-load.t')
-rwxr-xr-xt/00-load.t15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/00-load.t b/t/00-load.t
new file mode 100755
index 0000000..6706324
--- /dev/null
+++ b/t/00-load.t
@@ -0,0 +1,15 @@
+#!perl -T
+
+use strict;
+use warnings;
+use Test::More;
+
+my $pkg;
+BEGIN {
+ $pkg = 'Catmandu::Importer::PLoS';
+ use_ok $pkg;
+}
+
+require_ok $pkg;
+
+done_testing 2;