add first evaluations tests
This commit is contained in:
14
tests/Setup.pm
Normal file
14
tests/Setup.pm
Normal 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;
|
Reference in New Issue
Block a user