summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-01-07 15:53:25 -0800
committerJonathan "Duke" Leto <jonathan@leto.net>2011-01-07 15:53:25 -0800
commitf9ebb4d27fe3edb997ab6917b2f19fb9604561ec (patch)
treee36e46414407c7ea92d55b494f61f3f2c08a4e8f /t
parentRename builder test (diff)
downloadjitterbug-f9ebb4d27fe3edb997ab6917b2f19fb9604561ec.tar.gz
Die early if the config file does not exist and add some tests
Diffstat (limited to '')
-rw-r--r--t/005_builder.t23
1 files changed, 18 insertions, 5 deletions
diff --git a/t/005_builder.t b/t/005_builder.t
index 685ad57..15795d6 100644
--- a/t/005_builder.t
+++ b/t/005_builder.t
@@ -1,31 +1,44 @@
use strict;
use warnings;
-use Test::Most tests => 6;
+use Test::Most tests => 7;
+use Data::Dumper;
use jitterbug::Builder;
{
- local @ARGV = qw(-c foo.yml -C);
+ local @ARGV = qw(-c t/data/test.yml -C);
my $b = jitterbug::Builder->new();
isa_ok($b,'jitterbug::Builder');
can_ok($b,qw/run build run_task sleep/);
- is($b->{'configfile'}, 'foo.yml');
+ is($b->{'configfile'}, 't/data/test.yml');
is($b->{'cron'}, 1 );
}
{
local @ARGV = qw(-c blarg.yml -C);
- my $b = jitterbug::Builder->new();
- throws_ok (sub {$b->run}, qr/YAML Error/i, 'nonexistent yaml file throws error');
+ throws_ok (sub {
+ my $b = jitterbug::Builder->new();
+ }, qr/Does not exist/i, 'nonexistent yaml file throws error');
}
{
local @ARGV = qw(-c t/data/test.yml -C);
my $b = jitterbug::Builder->new();
+ isa_ok($b, 'jitterbug::Builder');
+ is($b->{'configfile'}, 't/data/test.yml');
+ #warn Dumper [ $b ];
+
is($b->run, 0, '->run returns 0 in cron mode');
+ cmp_deeply($b->{'conf'}, {
+ 'configfile' => 't/data/test.yml',
+ 'cron' => 1,
+ 'sleep' => undef
+ });
+
}
+