added test file
[webpac2] / t / 0-common.t
1 #!/usr/bin/perl -w
2
3 use strict;
4 use lib 'lib';
5
6 use Test::More tests => 7;
7
8 BEGIN {
9 use_ok( 'WebPAC::Test' );
10 use_ok( 'WebPAC::Common' );
11 }
12
13 my $path = "$abs_path/conf/test.yml";
14
15 my $common = 'WebPAC::Common';
16
17 cmp_ok( $common->fmt_time( 123456 ), 'eq', '10h17:36', 'fmt_time' );
18
19 throws_ok { $common->fill_in() } qr/no format/, 'fill_in without format';
20 throws_ok { $common->fill_in( '$foo', bar => 42 ) } qr/unknown var/, 'fill_in no variable';
21 cmp_ok( $common->fill_in( 'foo = $foo bar = $bar', foo => 42, bar => 1 ), 'eq', 'foo = 42 bar = 1', 'fill_in' );
22
23 like $common->var_path( qw/foo bar baz/ ), qr/var.foo.bar.baz/, 'var_path';