Start known issues changelog section - place it on top for clarity
[dbsrgits/DBIx-Class.git] / t / 63register_class.t
index 2fdc07c..0229713 100644 (file)
@@ -1,8 +1,10 @@
+BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
+
 use strict;
-use warnings;  
+use warnings;
 
 use Test::More tests => 2;
-use lib qw(t/lib);
+
 use DBICTest;
 use DBICTest::Schema;
 use DBICTest::Schema::Artist;
@@ -15,3 +17,6 @@ my $schema = DBICTest->init_schema();
 my $a = $schema->resultset('FooA')->search;
 is($a->count, 3, 'have 3 artists');
 is($schema->class('FooA'), 'DBICTest::FooA', 'Correct artist class');
+
+# clean up
+DBICTest::Schema->_unregister_source('FooA');