Dave Cross: Still Munging Data With Perl: Online event - Mar 27 Learn more

use strict;
use lib qw(t/lib);
my $schema = DBICTest->init_schema();
my $cd = $schema->resultset('CD')->search ({}, { columns => ['year'], rows => 1 })->single;
throws_ok (
sub { $cd->tracks },
qr/Unable to resolve relationship .+ column .+ not loaded from storage/,
'Correct exception on nonresolvable object-based condition'
);
done_testing;