aboutsummaryrefslogtreecommitdiffstats
path: root/t/08-Shared.t
diff options
context:
space:
mode:
Diffstat (limited to 't/08-Shared.t')
-rw-r--r--t/08-Shared.t15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/08-Shared.t b/t/08-Shared.t
new file mode 100644
index 00000000..3489a4a0
--- /dev/null
+++ b/t/08-Shared.t
@@ -0,0 +1,15 @@
+use 5.006;
+use strict;
+use warnings FATAL => 'all';
+use Test::More;
+
+BEGIN {
+ use_ok( 'ManaTools::Shared' ) || print "ManaTools::Shared failed!\n";
+}
+
+ok ( ManaTools::Shared::command_line(), 'command_line');
+is ( ManaTools::Shared::custom_locale_dir(), undef, 'custom_locale_dir');
+is ( ManaTools::Shared::devel_mode(), 0, 'devel_mode');
+
+
+done_testing;