diff options
author | Angelo Naselli <anaselli@linux.it> | 2015-05-03 22:37:14 +0200 |
---|---|---|
committer | Angelo Naselli <anaselli@linux.it> | 2015-05-03 22:37:14 +0200 |
commit | de0b6a5113a3e3f76551c43c08327961976f624e (patch) | |
tree | 4adb6a6bc9816914df881e4b5eeb0bc93420f713 /t | |
parent | c4619ac939b35cc7043c66d3789f4aec44b23e90 (diff) | |
download | colin-keep-de0b6a5113a3e3f76551c43c08327961976f624e.tar colin-keep-de0b6a5113a3e3f76551c43c08327961976f624e.tar.gz colin-keep-de0b6a5113a3e3f76551c43c08327961976f624e.tar.bz2 colin-keep-de0b6a5113a3e3f76551c43c08327961976f624e.tar.xz colin-keep-de0b6a5113a3e3f76551c43c08327961976f624e.zip |
Added custom_locale_dir() devel_mode() and command_line()
Diffstat (limited to 't')
-rw-r--r-- | t/08-Shared.t | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/t/08-Shared.t b/t/08-Shared.t new file mode 100644 index 0000000..3489a4a --- /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; |