From: Ben Tilly Date: Sat, 9 Jul 2011 19:19:03 +0000 (-0700) Subject: Removing these files from master because they are not for the next release. X-Git-Tag: 0.07011~67 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d8fe518bd0c54d25c2fbfb0d99fced24f5025890;hp=9ba5ae4ce56b509d947899b77d94117ca669c817;p=dbsrgits%2FDBIx-Class-Schema-Loader.git Removing these files from master because they are not for the next release. I will recreate them on a branch, as I originally intended to. --- diff --git a/t/60schema_base_dispatched.t b/t/60schema_base_dispatched.t deleted file mode 100644 index abba311..0000000 --- a/t/60schema_base_dispatched.t +++ /dev/null @@ -1,21 +0,0 @@ -# test that the class in schema_base_class gets used when loading the schema -# by Ben Tilly ( btilly -at| gmail.com ) - -use strict; -use Test::More tests => 1; -use DBIx::Class::Schema::Loader qw(make_schema_at); -use lib 't/lib'; -use make_dbictest_db; - -make_schema_at( - 'DBICTest::Schema::_test_schema_base', - { - really_erase_my_files => 1, - naming => 'current', - use_namespaces => 0, - schema_base_class => 'TestSchemaBaseClass', - }, - [ $make_dbictest_db::dsn ], -); - -ok($TestSchemaBaseClass::test_ok, "Connected using schema_base_class."); diff --git a/t/lib/TestSchemaBaseClass.pm b/t/lib/TestSchemaBaseClass.pm deleted file mode 100644 index 82e36dc..0000000 --- a/t/lib/TestSchemaBaseClass.pm +++ /dev/null @@ -1,16 +0,0 @@ -package TestSchemaBaseClass; -use base DBIx::Class::Schema; - -our $test_ok = 0; - -sub connection { - my ($self, @info) = @_; - - if ($info[0] =~ /^dbi/) { - $test_ok = 1; - } - - return $self->next::method(@info); -} - -1;