fixup to tests for non-*n?x platforms
Matt S Trout [Sun, 25 Jun 2006 22:49:58 +0000 (22:49 +0000)]
MANIFEST.SKIP
t/89dbicadmin.t

index 94080e9..9fa1c6a 100644 (file)
@@ -38,3 +38,6 @@
 
 # Skip maint stuff
 ^maint/
+
+# Temporary addition: skip sqlt test
+^t/86sqlt.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' );