about summary refs log tree commit diff
path: root/t/builder.t
blob: c952c127608b3d5f5d9c4be1588b313e76492630 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;
use Test::More tests => 3;

use jitterbug::Builder;

{
    local @ARGV = qw(-c blarg.yml);
    my $b = jitterbug::Builder->new();

    isa_ok($b,'jitterbug::Builder');
    is($b->{'configfile'}, 'blarg.yml');
    can_ok($b,'run');
}