Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Artwork.pm
CommitLineData
d5633096 1package # hide from PAUSE
4f6386b0 2 DBICTest::Schema::Artwork;
3
4a233f30 4use warnings;
5use strict;
6
660cf1be 7use base qw/DBICTest::BaseResult/;
6fbef4a4 8use Carp qw/confess/;
4f6386b0 9
10__PACKAGE__->table('cd_artwork');
11__PACKAGE__->add_columns(
12 'cd_id' => {
13 data_type => 'integer',
9c3018b6 14 is_nullable => 0,
4f6386b0 15 },
16);
17__PACKAGE__->set_primary_key('cd_id');
18__PACKAGE__->belongs_to('cd', 'DBICTest::Schema::CD', 'cd_id');
19__PACKAGE__->has_many('images', 'DBICTest::Schema::Image', 'artwork_id');
20
d5633096 21__PACKAGE__->has_many('artwork_to_artist', 'DBICTest::Schema::Artwork_to_Artist', 'artwork_cd_id');
22__PACKAGE__->many_to_many('artists', 'artwork_to_artist', 'artist');
23
e98e6478 24# both to test manytomany with custom rel
25__PACKAGE__->many_to_many('artists_test_m2m', 'artwork_to_artist', 'artist_test_m2m');
26__PACKAGE__->many_to_many('artists_test_m2m_noopt', 'artwork_to_artist', 'artist_test_m2m_noopt');
27
28# other test to manytomany
29__PACKAGE__->has_many('artwork_to_artist_test_m2m', 'DBICTest::Schema::Artwork_to_Artist',
6fbef4a4 30 sub {
31 my $args = shift;
32
33 # This is for test purposes only. A regular user does not
34 # need to sanity check the passed-in arguments, this is what
35 # the tests are for :)
36 my @missing_args = grep { ! defined $args->{$_} }
37 qw/self_alias foreign_alias self_resultsource foreign_relname/;
38 confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
39 if @missing_args;
40
41 return (
42 { "$args->{foreign_alias}.artwork_cd_id" => { -ident => "$args->{self_alias}.cd_id" },
43 },
44 $args->{self_rowobj} && {
45 "$args->{foreign_alias}.artwork_cd_id" => $args->{self_rowobj}->cd_id,
46 }
47 );
48 }
49);
e98e6478 50__PACKAGE__->many_to_many('artists_test_m2m2', 'artwork_to_artist_test_m2m', 'artist');
51
4f6386b0 521;