fixup to tests for non-*n?x platforms
[dbsrgits/DBIx-Class.git] / t / 89dbicadmin.t
index 0b1d1f5..7c7a89c 100644 (file)
@@ -20,7 +20,7 @@ if ($@) {
 plan tests => 5;
 
 my $employees = $schema->resultset('Employee');
-my $cmd = qq|script/dbicadmin --schema=DBICTest::Schema --class=Employee --tlibs --connect='["dbi:SQLite:dbname=t/var/DBIxClass.db","",""]' --force --tlibs|;
+my $cmd = qq|perl script/dbicadmin --schema=DBICTest::Schema --class=Employee --tlibs --connect='["dbi:SQLite:dbname=t/var/DBIxClass.db","",""]' --force --tlibs|;
 
 `$cmd --op=insert --set='{name:"Matt"}'`;
 ok( ($employees->count()==1), 'insert count' );