add first evaluations tests

This commit is contained in:
Rob Vermaas
2011-03-16 13:18:12 +00:00
parent 8f35d03bca
commit 890a7867b4
8 changed files with 87 additions and 9 deletions

14
tests/Setup.pm Normal file
View File

@ -0,0 +1,14 @@
package Setup;
use strict;
use Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(hydra_setup);
sub hydra_setup {
my ($db) = @_;
$db->resultset('Users')->create({ username => "root", emailaddress => 'root@email.com', password => '' });
}
1;