From: Arthur Axel 'fREW' Schmidt Date: Tue, 23 Feb 2010 02:15:54 +0000 (-0600) Subject: Why would we only test with MySQL? X-Git-Tag: v0.001000_01~153 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0dba7d3ea4fc99565a6250b959faa137b1153579;hp=4388afff42fb8a6df6e407e68962dcaf3fca086e;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git Why would we only test with MySQL? --- diff --git a/t/94versioning.t b/t/94versioning.t index 685809b..f0b510f 100644 --- a/t/94versioning.t +++ b/t/94versioning.t @@ -9,15 +9,9 @@ use Test::Exception; use Path::Class; use File::Copy; -#warn "$dsn $user $pass"; -my ($dsn, $user, $pass); +my ($dsn, $user, $pass) = ('dbi:SQLite::memory:','',''); BEGIN { - ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/}; - - plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test' - unless ($dsn); - eval { require Time::HiRes } || plan skip_all => 'Test needs Time::HiRes'; Time::HiRes->import(qw/time sleep/);