First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / cdbi-t / set_vs_DateTime.t
diff --git a/t/cdbi-t/set_vs_DateTime.t b/t/cdbi-t/set_vs_DateTime.t
deleted file mode 100644 (file)
index fb76561..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-use Test::More;
-use Test::Exception;
-
-BEGIN {
-  eval "use DBIx::Class::CDBICompat;";
-  plan skip_all => "Class::Trigger and DBIx::ContextualFetch required: $@"
-    if $@;
-  plan skip_all => "DateTime required" unless eval { require DateTime };
-  plan tests => 1;
-}
-
-{
-    package Thing;
-
-    use base 'DBIx::Class::Test::SQLite';
-
-    Thing->columns(All  => qw[thing_id this that date]);
-}
-
-my $thing = Thing->construct({ thing_id => 23, date => "01-02-1994" });
-my $date = DateTime->now;
-lives_ok {
-  $thing->set( date => $date );
-  $thing->set( date => $date );
-};
-
-
-
-$thing->discard_changes;