Add test files and test for vie
[dbsrgits/DBIx-Class.git] / t / lib / ViewDeps / Result / Foo.pm
1 package # hide from PAUSE
2     ViewDeps::Result::Foo;
3
4 use strict;
5 use warnings;
6 use parent qw(DBIx::Class::Core);
7 use aliased 'DBIx::Class::ResultSource::View';
8
9 __PACKAGE__->table_class(View);
10
11 __PACKAGE__->table('foo');
12
13 __PACKAGE__->add_columns(
14   id => { data_type => 'integer', is_auto_increment => 1 },
15   a => { data_type => 'integer', is_nullable => 1 }
16 );
17
18 __PACKAGE__->set_primary_key('id');
19
20 __PACKAGE__->belongs_to(
21   'bar',
22   'ViewDeps::Result::Bar',
23   { 'foreign.id' => 'self.a' }
24 );
25
26 1;