about summary refs log tree commit diff
path: root/t/005_builder.t
diff options
context:
space:
mode:
Diffstat (limited to 't/005_builder.t')
-rw-r--r--t/005_builder.t31
1 files changed, 31 insertions, 0 deletions
diff --git a/t/005_builder.t b/t/005_builder.t
new file mode 100644
index 0000000..685ad57
--- /dev/null
+++ b/t/005_builder.t
@@ -0,0 +1,31 @@
+
+use strict;
+use warnings;
+use Test::Most tests => 6;
+
+use jitterbug::Builder;
+
+{
+    local @ARGV = qw(-c foo.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->{'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');
+}
+
+{
+    local @ARGV = qw(-c t/data/test.yml -C);
+    my $b = jitterbug::Builder->new();
+    is($b->run, 0, '->run returns 0 in cron mode');
+
+}