Merge 'trunk' into 'table_name_ref'
[dbsrgits/DBIx-Class.git] / t / 99dbic_sqlt_parser.t
index d95f698..5bbd302 100644 (file)
@@ -15,10 +15,13 @@ BEGIN {
 
 my $schema = DBICTest->init_schema();
 # Dummy was yanked out by the sqlt hook test
+# CustomSql tests the horrific/deprecated ->name(\$sql) hack
 # YearXXXXCDs are views
-
-my @sources = grep { $_ ne 'Dummy' && $_ !~ /^Year\d{4}CDs$/ } 
-                $schema->sources;
+#
+my @sources = grep
+  { $_ !~ /^ (?: Dummy | CustomSql | Year\d{4}CDs ) $/x }
+  $schema->sources
+;
 
 plan tests => ( @sources * 3);