X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F99dbic_sqlt_parser.t;h=5bbd30254d0c6849e051d349b83dd477e239e7c1;hb=c16205d0299ba4a4f97425312606a3523a8f26be;hp=d95f6987742eb74d70908072f2835088ad84d339;hpb=35f61d278b515761c2dc3ac94059724a74e29793;p=dbsrgits%2FDBIx-Class.git diff --git a/t/99dbic_sqlt_parser.t b/t/99dbic_sqlt_parser.t index d95f698..5bbd302 100644 --- a/t/99dbic_sqlt_parser.t +++ b/t/99dbic_sqlt_parser.t @@ -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);