diff options
Diffstat (limited to 't')
-rw-r--r-- | t/02-JournalCtl.t | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/02-JournalCtl.t b/t/02-JournalCtl.t new file mode 100644 index 0000000..2fd6710 --- /dev/null +++ b/t/02-JournalCtl.t @@ -0,0 +1,14 @@ +#!perl -T +use 5.006; +use strict; +use warnings FATAL => 'all'; +use Test::More; + +BEGIN { + use_ok( 'AdminPanel::Shared::JournalCtl' ) || print "JournalCtl failed!\n"; +} + +ok( my $o = AdminPanel::Shared::JournalCtl->new(), 'create'); +ok( my $c = $o->get(), 'gets_log' ); + +done_testing; |