Views without a view_definition won't be added to the SQL::Translator::Schema by...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / NoViewDefinition.pm
1 package # hide from PAUSE
2     DBICTest::Schema::NoViewDefinition;
3
4 use base qw/DBICTest::BaseResult/;
5
6 __PACKAGE__->table_class('DBIx::Class::ResultSource::View');
7 __PACKAGE__->table('noviewdefinition');
8
9 1;