First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / cdbi-t / early_column_heisenbug.t
diff --git a/t/cdbi-t/early_column_heisenbug.t b/t/cdbi-t/early_column_heisenbug.t
deleted file mode 100644 (file)
index 09ea6d9..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-use strict;
-
-use Test::More;
-
-BEGIN {
-  eval "use DBIx::Class::CDBICompat;";
-  plan $@ ? (skip_all => "Class::Trigger and DBIx::ContextualFetch required: $@")
-          : ('no_plan');
-}
-
-
-{
-    package Thing;
-    use base qw(DBIx::Class::CDBICompat);
-}
-
-{
-    package Stuff;
-    use base qw(DBIx::Class::CDBICompat);
-}
-
-# There was a bug where looking at a column group before any were
-# set would cause them to be shared across classes.
-is_deeply [Stuff->columns("Essential")], [];
-Thing->columns(Essential => qw(foo bar baz));
-is_deeply [Stuff->columns("Essential")], [];
-
-1;