Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / prefetch / attrs_untouched.t
CommitLineData
8273e845 1use warnings;
4a233f30 2use strict;
e9bd1473 3
4use Test::More;
e9bd1473 5use lib qw(t/lib);
6use DBICTest;
bfa46eb5 7
e9bd1473 8use Data::Dumper;
bfa46eb5 9$Data::Dumper::Sortkeys = 1;
e9bd1473 10
11my $schema = DBICTest->init_schema();
12
f1952f5c 13plan tests => 3;
e9bd1473 14
e9bd1473 15# bug in 0.07000 caused attr (join/prefetch) to be modifed by search
16# so we check the search & attr arrays are not modified
17my $search = { 'artist.name' => 'Caterwauler McCrae' };
18my $attr = { prefetch => [ qw/artist liner_notes/ ],
19 order_by => 'me.cdid' };
20my $search_str = Dumper($search);
21my $attr_str = Dumper($attr);
22
23my $rs = $schema->resultset("CD")->search($search, $attr);
24
25is(Dumper($search), $search_str, 'Search hash untouched after search()');
26is(Dumper($attr), $attr_str, 'Attribute hash untouched after search()');
27cmp_ok($rs + 0, '==', 3, 'Correct number of records returned');