X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=script%2Fmaketestdb.pl;fp=script%2Fmaketestdb.pl;h=a662274f430ac5cf044c9b8b839b4be4780ac00d;hb=bfaf51f3089dd3eff6c8ed8fbbc693e6f2079211;hp=389b8ec02c507ef87052bac8978835a8e9289c6e;hpb=730e04464c19c35d1d586656299289ed6a782882;p=scpubgit%2Fstemmaweb.git diff --git a/script/maketestdb.pl b/script/maketestdb.pl index 389b8ec..a662274 100755 --- a/script/maketestdb.pl +++ b/script/maketestdb.pl @@ -9,7 +9,13 @@ use Text::Tradition::Directory; my $DBDIR = 'db'; my $DBNAME = 'traditions.db'; my $DBEXT = 'test'; -# Delete the old directory if it exists +# Make the directory on the filesystem if necessary +unless( -d $DBDIR ) { + mkdir $DBDIR + or die "Could not make database director $DBDIR"; + say "Created directory for test database"; +} +# Delete the old db if it exists if( -f "$DBDIR/$DBNAME.$DBEXT" ) { unlink( "$DBDIR/$DBNAME.$DBEXT" ); } @@ -28,7 +34,7 @@ my $dir = Text::Tradition::Directory->new( extra_args => { create => 1 } ); my $scope = $dir->new_scope(); -say "Created test directory"; +say "Created test database"; # Create users my $user = $dir->add_user({ username => 'user@example.org', password => 'UserPass' });