Lines 348-354
subtest '/dbic_merge_prefetch' => sub {
Link Here
|
348 |
my $t = Test::Mojo->new; |
348 |
my $t = Test::Mojo->new; |
349 |
|
349 |
|
350 |
$t->get_ok('/dbic_merge_prefetch')->status_is(200) |
350 |
$t->get_ok('/dbic_merge_prefetch')->status_is(200) |
351 |
->json_is( '/prefetch/0' => 'biblio' ) |
351 |
->json_is( '/prefetch/0' => { 'biblio' => 'orders' } ) |
352 |
->json_is( '/prefetch/1' => 'item' ); |
352 |
->json_is( '/prefetch/1' => 'item' ); |
353 |
|
353 |
|
354 |
$t->get_ok('/dbic_merge_prefetch_recursive')->status_is(200) |
354 |
$t->get_ok('/dbic_merge_prefetch_recursive')->status_is(200) |
355 |
- |
|
|