aboutsummaryrefslogtreecommitdiffstats
path: root/t/02-JournalCtl.t
blob: 3eb521225c4a18484574453d0e67217d56ff6e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use 5.006;
use strict;
use warnings FATAL => 'all';
use Test::More;

BEGIN {
    use_ok( 'ManaTools::Shared::JournalCtl' ) || print "JournalCtl failed!\n";
}

    ok( my $o = ManaTools::Shared::JournalCtl->new(this_boot=>1,), 'create');
    ok( my $c = $o->getLog(), 'gets_log' );

done_testing;