skip views. because we use get_table to test. that's not gonna work.
Matt S Trout [Fri, 20 Feb 2009 08:16:48 +0000 (08:16 +0000)]
t/99dbic_sqlt_parser.t

index e411135..0a42306 100644 (file)
@@ -14,7 +14,11 @@ BEGIN {
 }
 
 my $schema = DBICTest->init_schema();
-my @sources = grep { $_ ne 'Dummy' } ($schema->sources); # Dummy was yanked out by the sqlt hook test
+# Dummy was yanked out by the sqlt hook test
+# YearXXXXCDs are views
+my @sources = grep { $_ ne 'Dummy' && $_ !~ /^Year\d{4}CDs$/ } 
+                $schema->sources;
+
 plan tests => ( @sources * 3);
 
 {