From: Samuel Kaufman <skaufman@cpan.org>
Date: Wed, 14 Jan 2015 15:06:02 +0000 (+0000)
Subject: try to figure out wtf is wrong with windows
X-Git-Tag: v1.001_029~2
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a1f70f6fa0e3a509bd500a753439acf85ec1de9c;p=dbsrgits%2FDBIx-Class-Fixtures.git

try to figure out wtf is wrong with windows
---

diff --git a/Changes b/Changes
index ed40c8d..3f499da 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,8 @@ Revision history for DBIx-Class-Fixtures
 
 {{$NEXT}}
 
+1.001028  2015-01-05 00:40:41+00:00 Europe/London
+
 - releasing as stable
 
 1.001027_02 2014-12-30 19:50:50+00:00 Europe/London
diff --git a/Makefile.PL b/Makefile.PL
index 08cfacd..bd3e8f5 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -51,7 +51,7 @@ my %WriteMakefileArgs = (
     "IPC::Open3" => 0,
     "Test::More" => "0.98"
   },
-  "VERSION" => "1.001027_02",
+  "VERSION" => "1.001028",
   "test" => {
     "TESTS" => "t/*.t"
   }
diff --git a/dist.ini b/dist.ini
index bcc1aff..9f4f370 100644
--- a/dist.ini
+++ b/dist.ini
@@ -58,6 +58,7 @@ ExtUtils::MakeMaker=6.59
 DBIx::Class::InflateColumn::FS = 0.01007
 ExtUtils::MakeMaker = 6.59
 Test::More = 0.98
+Devel::Confess = 0
 
 [Prereqs]
 Class::Accessor::Grouped = 0.1001
diff --git a/t/02-dump-basic.t b/t/02-dump-basic.t
index e60ccb5..0ab8119 100644
--- a/t/02-dump-basic.t
+++ b/t/02-dump-basic.t
@@ -5,9 +5,10 @@ use Test::More tests => 17;
 use lib qw(t/lib);
 use DBICTest;
 use Path::Class;
-use Data::Dumper; 
+use Data::Dumper;
 use IO::All;
 
+use if $^O eq 'MSWin32','Devel::Confess';
 # set up and populate schema
 ok(my $schema = DBICTest->init_schema(), 'got schema');
 
diff --git a/t/07-dump-all.t b/t/07-dump-all.t
index 08fc286..6a070c4 100644
--- a/t/07-dump-all.t
+++ b/t/07-dump-all.t
@@ -7,6 +7,7 @@ use DBICTest;
 use Path::Class;
 use Data::Dumper; 
 use IO::All;
+use if $^O eq 'MSWin32','Devel::Confess';
 plan tests => 16;
 
 # set up and populate schema