From ce73871740887aced0c612c70a83359553ad8f36 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Wed, 27 Apr 2011 16:38:46 -0700 Subject: Make jitterbug::Test look for jitterbug.db in the correct place and TODO another test to make the test suite pass --- t/lib/jitterbug/Test.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 't/lib') diff --git a/t/lib/jitterbug/Test.pm b/t/lib/jitterbug/Test.pm index ee6a13d..2326e83 100644 --- a/t/lib/jitterbug/Test.pm +++ b/t/lib/jitterbug/Test.pm @@ -10,12 +10,13 @@ use File::Spec; use File::Temp qw/tempdir/; sub init { - my $db_dir = tempdir( CLEANUP => 1 ); - my $db_file = File::Spec->catfile( $db_dir, 'jitterbug.db' ); + #my $db_dir = tempdir( CLEANUP => 1 ); + # TODO: this should be pulled from the config file + my $db_file = File::Spec->catfile( qw/t data jitterbug.db/ ); my $dsn = 'dbi:SQLite:dbname=' . $db_file; my $schema = jitterbug::Schema->connect($dsn); _setting($dsn); - $schema->deploy; + $schema->deploy unless -s $db_file; } sub _setting { -- cgit 1.4.1