#!perl
-use Test::More tests => 3;
+use Test::More;
use lib qw(t/lib);
use DBICTest;
use Data::Dumper;
{
my $artists = $schema->resultset('Artist')->order_by(col => 'artistid')->with_substr->search({}, { prefetch => 'cds', rows => 1 })->display();
- use Data::Dumper; print Dumper($artists); exit;
is_deeply($artists, [
- {
- 'artistid' => '1',
- 'name' => 'Caterwauler McCrae',
- 'substr' => 'Cat'
- },
- {
- 'artistid' => '2',
- 'name' => 'Random Boy Band',
- 'substr' => 'Ran'
- },
- {
- 'artistid' => '3',
- 'name' => 'We Are Goth',
- 'substr' => 'We '
- }
- ], 'display with substring okay');
+ {
+ 'artistid' => 1,
+ 'cds' => [
+ {
+ 'cdid' => 3,
+ 'artist' => 1,
+ 'title' => 'Caterwaulin\' Blues',
+ 'year' => '1997'
+ },
+ {
+ 'cdid' => 1,
+ 'artist' => 1,
+ 'title' => 'Spoonful of bees',
+ 'year' => '1999'
+ },
+ {
+ 'cdid' => 2,
+ 'artist' => 1,
+ 'title' => 'Forkful of bees',
+ 'year' => '2001'
+ }
+ ],
+ 'name' => 'Caterwauler McCrae',
+ 'substr' => 'Cat'
+ }
+ ], 'substring before prefetch okay');
}
-
-
+done_testing();