testing dbicadmin/DBIx::Class::Admin integration
Eden Cardim [Fri, 14 May 2010 02:03:21 +0000 (02:03 +0000)]
t/admin/10script.t
t/dbicadmin-test-include/lib/Foo.pm

index 7718b34..633d797 100644 (file)
@@ -16,7 +16,7 @@ BEGIN {
 }
 
 my @json_backends = qw/XS JSON DWIW/;
-my $tests_per_run = 5;
+my $tests_per_run = 6;
 
 plan tests => $tests_per_run * @json_backends;
 
@@ -29,6 +29,11 @@ for my $js (@json_backends) {
         $ENV{JSON_ANY_ORDER} = $js;
         eval { test_dbicadmin () };
         diag $@ if $@;
+
+        # test the script is setting @INC properly
+        like(`script/dbicadmin -It/dbicadmin-test-include/lib --schema=Foo --op=deploy --connect=[] --debug`,
+           qr|Adding to \@INC:\nt/dbicadmin-test-include/lib|
+        );
     }
 }
 
index 2801e9e..1175c56 100644 (file)
@@ -1,7 +1,9 @@
 package Foo;
+use base 'DBIx::Class::Schema';
 
 our $loaded = 1;
-
-sub connect {}
+our $deploy = 0;
+sub connect { bless {}, 'Foo' }
+sub deploy {$deploy = 1}
 
 1;