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=bbae42d2d1bf552c9fad8a123d6c48d46dfc4d45;hpb=65b386dfedd73d8b6e98d2f52039280fc63a8e7d;p=dbsrgits%2FDBIx-Class.git diff --git a/t/99dbic_sqlt_parser.t b/t/99dbic_sqlt_parser.t index bbae42d..5bbd302 100644 --- a/t/99dbic_sqlt_parser.t +++ b/t/99dbic_sqlt_parser.t @@ -29,7 +29,7 @@ plan tests => ( @sources * 3); my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { } } }); foreach my $source (@sources) { - my $table = $sqlt_schema->get_table($schema->source($source)->from); + my $table = get_table($sqlt_schema, $schema, $source); my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints); my @indices = $table->get_indices; @@ -43,7 +43,7 @@ plan tests => ( @sources * 3); my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 1 } } }); foreach my $source (@sources) { - my $table = $sqlt_schema->get_table($schema->source($source)->from); + my $table = get_table($sqlt_schema, $schema, $source); my $fk_count = scalar(grep { $_->type eq 'FOREIGN KEY' } $table->get_constraints); my @indices = $table->get_indices; @@ -57,7 +57,7 @@ plan tests => ( @sources * 3); my $sqlt_schema = create_schema({ schema => $schema, args => { parser_args => { add_fk_index => 0 } } }); foreach my $source (@sources) { - my $table = $sqlt_schema->get_table($schema->source($source)->from); + my $table = get_table($sqlt_schema, $schema, $source); my @indices = $table->get_indices; my $index_count = scalar(@indices); @@ -83,3 +83,12 @@ sub create_schema { $sqlt->parser('SQL::Translator::Parser::DBIx::Class'); return $sqlt->translate({ data => $schema }) or die $sqlt->error; } + +sub get_table { + my ($sqlt_schema, $schema, $source) = @_; + + my $table_name = $schema->source($source)->from; + $table_name = $$table_name if ref $table_name; + + return $sqlt_schema->get_table($table_name); +}