about summary refs log tree commit diff
path: root/t
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-04-29 19:29:33 -0700
committerJonathan "Duke" Leto <jonathan@leto.net>2011-04-29 19:29:33 -0700
commit7d4f2cd6db48e527f4822fe318ff4a82c064c645 (patch)
tree76cf70b85ec26c5d0eccbfdb956d51fdf34bda4c /t
parentMake the builder do a 'use lib lib' so we don't have to (diff)
downloadjitterbug-7d4f2cd6db48e527f4822fe318ff4a82c064c645.tar.gz
Make the command-line arg of the builder --config to match jitterbug_db
Diffstat (limited to 't')
-rw-r--r--t/005_builder.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/005_builder.t b/t/005_builder.t
index 3adf39f..cc0bb0a 100644
--- a/t/005_builder.t
+++ b/t/005_builder.t
@@ -17,7 +17,7 @@ jitterbug::Test->init();
     isa_ok($b,'jitterbug::Builder');
     can_ok($b,qw/run build run_task sleep/);
 
-    is($b->{'configfile'}, 't/data/test.yml');
+    is($b->{'config'}, 't/data/test.yml');
     is($b->{'cron'}, 1 );
 }
 
@@ -33,7 +33,7 @@ jitterbug::Test->init();
     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');
+    is($b->{'config'}, 't/data/test.yml');
 
     is($b->run, 0, '->run returns 0 in cron mode');