Create test db before login
Errietta Kostala [Thu, 22 Jan 2015 14:43:35 +0000 (14:43 +0000)]
Makefile.PL
t/04login.t

index 3155092..fa760b1 100644 (file)
@@ -55,6 +55,7 @@ requires 'Config::General'; # This should reflect the config file format you've
 test_requires 'Test::More' => '0.88';
 test_requires 'LWP::Protocol::PSGI';
 test_requires 'Test::WWW::Mechanize';
+test_requires 'IPC::System::Simple';
 catalyst;
 
 install_script glob('script/*.pl');
index 5816ab2..59043c6 100644 (file)
@@ -9,6 +9,11 @@ use Test::More;
 use HTML::TreeBuilder;
 use Data::Dumper;
 
+use FindBin;
+
+use IPC::System::Simple qw(system);
+system("$FindBin::Bin/../script/maketestdb.pl");
+
 LWP::Protocol::PSGI->register(stemmaweb->psgi_app);
 
 my $ua = Test::WWW::Mechanize->new;