Stop loading Time::HiRes in the base test schema - there is no need
[dbsrgits/DBIx-Class.git] / t / 60core.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
70350518 3use strict;
be83e9ec 4use warnings;
70350518 5
6use Test::More;
d6df786a 7use Test::Exception;
00f3b1c7 8use Test::Warn;
c0329273 9
a5a7bb73 10use DBICTest ':DiffSQL';
70350518 11
ae515736 12my $schema = DBICTest->init_schema();
0567538f 13
f9db5527 14my @art = $schema->resultset("Artist")->search({ }, { order_by => 'name DESC'});
0567538f 15
d2f21b37 16is(@art, 3, "Three artists returned");
0567538f 17
18my $art = $art[0];
19
20is($art->name, 'We Are Goth', "Correct order too");
21
22$art->name('We Are In Rehab');
23
24is($art->name, 'We Are In Rehab', "Accessor update ok");
25
6dbea98e 26my %dirty = $art->get_dirty_columns();
d2f21b37 27is(scalar(keys(%dirty)), 1, '1 dirty column');
6dbea98e 28ok(grep($_ eq 'name', keys(%dirty)), 'name is dirty');
29
0567538f 30is($art->get_column("name"), 'We Are In Rehab', 'And via get_column');
31
32ok($art->update, 'Update run');
33
6dbea98e 34my %not_dirty = $art->get_dirty_columns();
d2f21b37 35is(scalar(keys(%not_dirty)), 0, 'Nothing is dirty');
6dbea98e 36
00f3b1c7 37throws_ok ( sub {
6dbea98e 38 my $ret = $art->make_column_dirty('name2');
00f3b1c7 39}, qr/No such column 'name2'/, 'Failed to make non-existent column dirty');
40
6dbea98e 41$art->make_column_dirty('name');
42my %fake_dirty = $art->get_dirty_columns();
d2f21b37 43is(scalar(keys(%fake_dirty)), 1, '1 fake dirty column');
6dbea98e 44ok(grep($_ eq 'name', keys(%fake_dirty)), 'name is fake dirty');
45
de5ce481 46ok($art->update, 'Update run');
47
ae515736 48my $record_jp = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => 'cds' })->next;
49
50ok($record_jp, "prefetch on same rel okay");
51
52my $record_fn = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search({'cds.cdid' => '1'}, {join => 'artist_undirected_maps'})->next;
53
54ok($record_fn, "funny join is okay");
55
f9db5527 56@art = $schema->resultset("Artist")->search({ name => 'We Are In Rehab' });
0567538f 57
d2f21b37 58is(@art, 1, "Changed artist returned by search");
0567538f 59
d2f21b37 60is($art[0]->artistid, 3,'Correct artist too');
0567538f 61
d6df786a 62lives_ok (sub { $art->delete }, 'Cascading delete on Ordered has_many works' ); # real test in ordered.t
0567538f 63
f9db5527 64@art = $schema->resultset("Artist")->search({ });
0567538f 65
d2f21b37 66is(@art, 2, 'And then there were two');
0567538f 67
63bb9738 68is($art->in_storage, 0, "It knows it's dead");
0567538f 69
de5ce481 70lives_ok { $art->update } 'No changes so update should be OK';
71
d6df786a 72dies_ok ( sub { $art->delete }, "Can't delete twice");
0567538f 73
74is($art->name, 'We Are In Rehab', 'But the object is still live');
75
76$art->insert;
77
78ok($art->in_storage, "Re-created");
79
f9db5527 80@art = $schema->resultset("Artist")->search({ });
0567538f 81
d2f21b37 82is(@art, 3, 'And now there are three again');
0567538f 83
f9db5527 84my $new = $schema->resultset("Artist")->create({ artistid => 4 });
0567538f 85
d2f21b37 86is($new->artistid, 4, 'Create produced record ok');
0567538f 87
f9db5527 88@art = $schema->resultset("Artist")->search({ });
0567538f 89
d2f21b37 90is(@art, 4, "Oh my god! There's four of them!");
0567538f 91
92$new->set_column('name' => 'Man With A Fork');
93
94is($new->name, 'Man With A Fork', 'set_column ok');
95
96$new->discard_changes;
97
98ok(!defined $new->name, 'Discard ok');
99
100$new->name('Man With A Spoon');
101
102$new->update;
103
70350518 104my $new_again = $schema->resultset("Artist")->find(4);
0567538f 105
106is($new_again->name, 'Man With A Spoon', 'Retrieved correctly');
107
9bbd8963 108is($new_again->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
1f6715ab 109
8273e845 110# test that store_column is called once for create() for non sequence columns
52c53388 111{
112 ok(my $artist = $schema->resultset('Artist')->create({name => 'store_column test'}));
113 is($artist->name, 'X store_column test'); # used to be 'X X store...'
b236052f 114
a22688ab 115 # call store_column even though the column doesn't seem to be dirty
b236052f 116 $artist->name($artist->name);
a22688ab 117 is($artist->name, 'X X store_column test');
b236052f 118 ok($artist->is_column_changed('name'), 'changed column marked as dirty');
119
52c53388 120 $artist->delete;
121}
122
450e6dbf 123# deprecation of rolled-out search
124warnings_exist {
125 $schema->resultset('Artist')->search_rs(id => 4)
126} qr/\Qsearch( %condition ) is deprecated/, 'Deprecation warning on ->search( %condition )';
127
49ca473e 128# this has been warning for 4 years, killing
129throws_ok {
130 $schema->resultset('Artist')->find(artistid => 4);
131} qr|expects either a column/value hashref, or a list of values corresponding to the columns of the specified unique constraint|;
a87eb971 132
f9db5527 133is($schema->resultset("Artist")->count, 4, 'count ok');
0567538f 134
76cc4546 135# test find on an unresolvable condition
136is(
137 $schema->resultset('Artist')->find({ artistid => [ -and => 1, 2 ]}),
138 undef
139);
140
141
b3e1f1f5 142# test find_or_new
143{
144 my $existing_obj = $schema->resultset('Artist')->find_or_new({
145 artistid => 4,
146 });
147
148 is($existing_obj->name, 'Man With A Spoon', 'find_or_new: found existing artist');
149 ok($existing_obj->in_storage, 'existing artist is in storage');
150
151 my $new_obj = $schema->resultset('Artist')->find_or_new({
152 artistid => 5,
153 name => 'find_or_new',
154 });
155
156 is($new_obj->name, 'find_or_new', 'find_or_new: instantiated a new artist');
63bb9738 157 is($new_obj->in_storage, 0, 'new artist is not in storage');
b3e1f1f5 158}
159
f9db5527 160my $cd = $schema->resultset("CD")->find(1);
076a6864 161my %cols = $cd->get_columns;
162
d2f21b37 163is(keys %cols, 6, 'get_columns number of columns ok');
076a6864 164
165is($cols{title}, 'Spoonful of bees', 'get_columns values ok');
166
167%cols = ( title => 'Forkful of bees', year => 2005);
168$cd->set_columns(\%cols);
169
170is($cd->title, 'Forkful of bees', 'set_columns ok');
171
172is($cd->year, 2005, 'set_columns ok');
173
174$cd->discard_changes;
175
20518cb4 176# check whether ResultSource->columns returns columns in order originally supplied
177my @cd = $schema->source("CD")->columns;
571dced3 178
a1cb5921 179is_deeply( \@cd, [qw/cdid artist title year genreid single_track/], 'column order');
571dced3 180
82a96700 181$cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { columns => ['title'] })->next;
90f3f5ff 182is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly');
183
02ddfe6e 184$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ { name => 'artist.name' } ], join => [ 'artist' ] })->find(1);
5ac6a044 185
186is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
187is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
188
67ba6646 189# check if new syntax +columns also works for this
53998003 190$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ { name => 'artist.name' } ], join => [ 'artist' ] })->find(1);
67ba6646 191
192is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
193is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
194
195# check if new syntax for +columns select specifiers works for this
196$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ {artist_name => 'artist.name'} ], join => [ 'artist' ] })->find(1);
197
198is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
199is($cd->get_column('artist_name'), 'Caterwauler McCrae', 'Additional column returned');
5ac6a044 200
82a96700 201# update_or_insert
f9db5527 202$new = $schema->resultset("Track")->new( {
0567538f 203 trackid => 100,
204 cd => 1,
0567538f 205 title => 'Insert or Update',
43556c5d 206 last_updated_on => '1973-07-19 12:01:02'
0567538f 207} );
82a96700 208$new->update_or_insert;
209ok($new->in_storage, 'update_or_insert insert ok');
0567538f 210
00f3b1c7 211throws_ok (sub {
212 $schema->class("Track")->load_components('DoesNotExist');
213}, qr!Can't locate DBIx/Class/DoesNotExist.pm!, 'exception on nonexisting component');
0567538f 214
1edaf6fe 215is($schema->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdata usage ok');
90e6de6c 216
54540863 217my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ];
218
fb88ca2c 219my $or_rs = $schema->resultset("CD")->search_rs($search, { join => 'tags',
6aeb9185 220 order_by => 'cdid' });
a258ee5d 221is($or_rs->all, 5, 'Joined search with OR returned correct number of rows');
222is($or_rs->count, 5, 'Search count with OR ok');
54540863 223
a258ee5d 224my $collapsed_or_rs = $or_rs->search ({}, { distinct => 1 }); # induce collapse
225is ($collapsed_or_rs->all, 4, 'Collapsed joined search with OR returned correct number of rows');
226is ($collapsed_or_rs->count, 4, 'Collapsed search count with OR ok');
6aeb9185 227
00f3b1c7 228# make sure sure distinct on a grouped rs is warned about
a2f22854 229{
230 my $cd_rs = $schema->resultset ('CD')
231 ->search ({}, { distinct => 1, group_by => 'title' });
232 warnings_exist (sub {
233 $cd_rs->next;
234 }, qr/Useless use of distinct/, 'UUoD warning');
235}
00f3b1c7 236
1cc3ce1e 237{
d2f21b37 238 my $tcount = $schema->resultset('Track')->search(
286f32b3 239 {},
d2f21b37 240 {
11d68671 241 select => [ qw/position title/ ],
242 distinct => 1,
286f32b3 243 }
244 );
d2f21b37 245 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
246
11d68671 247 $tcount = $schema->resultset('Track')->search(
248 {},
249 {
250 columns => [ qw/position title/ ],
251 distinct => 1,
252 }
253 );
254 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
255
256 $tcount = $schema->resultset('Track')->search(
257 {},
258 {
259 group_by => [ qw/position title/ ]
260 }
261 );
8273e845 262 is($tcount->count, 13, 'multiple column COUNT DISTINCT using column syntax ok');
f2de4889 263}
584e74ed 264
f9db5527 265my $tag_rs = $schema->resultset('Tag')->search(
6aeb9185 266 [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
267
fb88ca2c 268my $rel_rs = $tag_rs->search_related('cd', {}, { order_by => 'cd.cdid'} );
6aeb9185 269
a258ee5d 270is($rel_rs->count, 5, 'Related search ok');
6aeb9185 271
d2f21b37 272is($or_rs->next->cdid, $rel_rs->next->cdid, 'Related object ok');
a4731ae0 273$or_rs->reset;
274$rel_rs->reset;
a953d8d9 275
a2f22854 276# at this point there should be no active statements
277# (finish() was called everywhere, either explicitly via
278# reset() or on DESTROY)
279for (keys %{$schema->storage->dbh->{CachedKids}}) {
280 fail("Unreachable cached statement still active: $_")
281 if $schema->storage->dbh->{CachedKids}{$_}->FETCH('Active');
282}
283
4c4ccf29 284my $tag = $schema->resultset('Tag')->search(
02ddfe6e 285 [ { 'me.tag' => 'Blue' } ],
286 { columns => 'tagid' }
287)->next;
4c4ccf29 288
d2f21b37 289ok($tag->has_column_loaded('tagid'), 'Has tagid loaded');
290ok(!$tag->has_column_loaded('tag'), 'Has not tag loaded');
4c4ccf29 291
a953d8d9 292ok($schema->storage(), 'Storage available');
293
16b4fd26 294{
295 my $rs = $schema->resultset("Artist")->search({
296 -and => [
297 artistid => { '>=', 1 },
298 artistid => { '<', 3 }
299 ]
300 });
301
84f7e8a1 302 $rs->update({ rank => 6134 });
16b4fd26 303
304 my $art;
305
306 $art = $schema->resultset("Artist")->find(1);
84f7e8a1 307 is($art->rank, 6134, 'updated first artist rank');
16b4fd26 308
309 $art = $schema->resultset("Artist")->find(2);
84f7e8a1 310 is($art->rank, 6134, 'updated second artist rank');
16b4fd26 311}
312
825135d8 313# test source_name
314{
315 # source_name should be set for normal modules
316 is($schema->source('CD')->source_name, 'CD', 'source_name is set to moniker');
a4731ae0 317
825135d8 318 # test the result source that sets source_name explictly
319 ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists');
0009fa49 320
825135d8 321 my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' });
d2f21b37 322 is(@artsn, 4, "Four artists returned");
8273e845 323
b1fb2c94 324 # make sure subclasses that don't set source_name are ok
93405cf0 325 ok($schema->source('ArtistSubclass'), 'ArtistSubclass exists');
825135d8 326}
bab77431 327
9c2c91ea 328my $newbook = $schema->resultset( 'Bookmark' )->find(1);
329
d6df786a 330lives_ok (sub { my $newlink = $newbook->link}, "stringify to false value doesn't cause error");
9c2c91ea 331
825135d8 332# test cascade_delete through many_to_many relations
333{
334 my $art_del = $schema->resultset("Artist")->find({ artistid => 1 });
d6df786a 335 lives_ok (sub { $art_del->delete }, 'Cascading delete on Ordered has_many works' ); # real test in ordered.t
d2f21b37 336 is( $schema->resultset("CD")->search({artist => 1}), 0, 'Cascading through has_many top level.');
337 is( $schema->resultset("CD_to_Producer")->search({cd => 1}), 0, 'Cascading through has_many children.');
825135d8 338}
bab77431 339
825135d8 340# test column_info
341{
342 $schema->source("Artist")->{_columns}{'artistid'} = {};
d9916234 343 $schema->source("Artist")->column_info_from_storage(1);
bab77431 344
825135d8 345 my $typeinfo = $schema->source("Artist")->column_info('artistid');
346 is($typeinfo->{data_type}, 'INTEGER', 'column_info ok');
347 $schema->source("Artist")->column_info('artistid');
52416317 348 ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info loaded flag set');
349}
350
351# test columns_info
352{
353 $schema->source("Artist")->{_columns}{'artistid'} = {};
354 $schema->source("Artist")->column_info_from_storage(1);
355 $schema->source("Artist")->{_columns_info_loaded} = 0;
356
f45dc928 357 my @undef_default = DBIx::Class::_ENV_::STRESSTEST_COLUMN_INFO_UNAWARE_STORAGE
358 ? ()
359 : ( default_value => undef )
360 ;
361
52416317 362 is_deeply (
363 $schema->source('Artist')->columns_info,
364 {
365 artistid => {
366 data_type => "INTEGER",
f45dc928 367 @undef_default,
52416317 368 is_nullable => 0,
369 size => undef
370 },
371 charfield => {
372 data_type => "char",
f45dc928 373 @undef_default,
52416317 374 is_nullable => 1,
375 size => 10
376 },
377 name => {
378 data_type => "varchar",
f45dc928 379 @undef_default,
52416317 380 is_nullable => 1,
381 is_numeric => 0,
382 size => 100
383 },
384 rank => {
385 data_type => "integer",
386 default_value => 13,
387 is_nullable => 0,
388 size => undef
389 },
390 },
391 'columns_info works',
392 );
393
394 ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info loaded flag set');
395
396 is_deeply (
397 $schema->source('Artist')->columns_info([qw/artistid rank/]),
398 {
399 artistid => {
400 data_type => "INTEGER",
f45dc928 401 @undef_default,
52416317 402 is_nullable => 0,
403 size => undef
404 },
405 rank => {
406 data_type => "integer",
407 default_value => 13,
408 is_nullable => 0,
409 size => undef
410 },
411 },
412 'limited columns_info works',
413 );
825135d8 414}
bab77431 415
a48e92d7 416# test source_info
417{
418 my $expected = {
419 "source_info_key_A" => "source_info_value_A",
420 "source_info_key_B" => "source_info_value_B",
421 "source_info_key_C" => "source_info_value_C",
422 };
423
424 my $sinfo = $schema->source("Artist")->source_info;
425
426 is_deeply($sinfo, $expected, 'source_info data works');
427}
428
825135d8 429# test remove_columns
430{
4738027b 431 is_deeply(
432 [$schema->source('CD')->columns],
433 [qw/cdid artist title year genreid single_track/],
434 'initial columns',
435 );
436
437 $schema->source('CD')->remove_columns('coolyear'); #should not delete year
438 is_deeply(
439 [$schema->source('CD')->columns],
440 [qw/cdid artist title year genreid single_track/],
441 'nothing removed when removing a non-existent column',
442 );
443
444 $schema->source('CD')->remove_columns('genreid', 'year');
445 is_deeply(
446 [$schema->source('CD')->columns],
447 [qw/cdid artist title single_track/],
448 'removed two columns',
449 );
450
451 my $priv_columns = $schema->source('CD')->_columns;
452 ok(! exists $priv_columns->{'year'}, 'year purged from _columns');
453 ok(! exists $priv_columns->{'genreid'}, 'genreid purged from _columns');
825135d8 454}
bab77431 455
ade8df5b 456# test resultsource->table return value when setting
457{
458 my $class = $schema->class('Event');
ade8df5b 459 my $table = $class->table($class->table);
460 is($table, $class->table, '->table($table) returns $table');
461}
0e80c4ca 462
463#make sure insert doesn't use set_column
464{
465 my $en_row = $schema->resultset('Encoded')->new_result({encoded => 'wilma'});
466 is($en_row->encoded, 'amliw', 'new encodes');
467 $en_row->insert;
468 is($en_row->encoded, 'amliw', 'insert does not encode again');
469}
3bb4eb8f 470
68888c09 471#make sure multicreate encoding still works
472{
473 my $empl_rs = $schema->resultset('Employee');
474
475 my $empl = $empl_rs->create ({
476 name => 'Secret holder',
477 secretkey => {
478 encoded => 'CAN HAZ',
479 },
480 });
481 is($empl->secretkey->encoded, 'ZAH NAC', 'correctly encoding on multicreate');
482
483 my $empl2 = $empl_rs->create ({
484 name => 'Same secret holder',
485 secretkey => {
486 encoded => 'CAN HAZ',
487 },
488 });
489 is($empl2->secretkey->encoded, 'ZAH NAC', 'correctly encoding on preexisting multicreate');
490
491 $empl_rs->create ({
492 name => 'cat1',
493 secretkey => {
494 encoded => 'CHEEZBURGER',
495 keyholders => [
496 {
497 name => 'cat2',
498 },
499 {
500 name => 'cat3',
501 },
502 ],
503 },
504 });
505
506 is($empl_rs->find({name => 'cat1'})->secretkey->encoded, 'REGRUBZEEHC', 'correct secret in database for empl1');
507 is($empl_rs->find({name => 'cat2'})->secretkey->encoded, 'REGRUBZEEHC', 'correct secret in database for empl2');
508 is($empl_rs->find({name => 'cat3'})->secretkey->encoded, 'REGRUBZEEHC', 'correct secret in database for empl3');
509
510}
511
4376a157 512# make sure that obsolete handle-based source tracking continues to work for the time being
513{
514 my $handle = $schema->source('Artist')->handle;
515
51c9ead2 516 my $rowdata = { $schema->resultset('Artist')->next->get_columns };
4376a157 517
518 my $rs = DBIx::Class::ResultSet->new($handle);
519 my $rs_result = $rs->next;
520 isa_ok( $rs_result, 'DBICTest::Artist' );
521 is_deeply (
522 { $rs_result->get_columns },
523 $rowdata,
524 'Correct columns retrieved (rset/source link healthy)'
525 );
526
527 my $row = DBICTest::Artist->new({ -source_handle => $handle });
528 is_deeply(
529 { $row->get_columns },
530 {},
531 'No columns yet'
532 );
533
534 # store_column to fool the _orig_ident tracker
535 $row->store_column('artistid', $rowdata->{artistid});
536 $row->in_storage(1);
537
538 $row->discard_changes;
539 is_deeply(
540 { $row->get_columns },
541 $rowdata,
542 'Storage refetch successful'
543 );
544}
545
3f1d61d0 546# test to make sure that calling ->new() on a resultset object gives
547# us a row object
548{
549 my $new_artist = $schema->resultset('Artist')->new({});
550 isa_ok( $new_artist, 'DBIx::Class::Row', '$rs->new gives a row object' );
551}
552
553
3bb4eb8f 554# make sure we got rid of the compat shims
555SKIP: {
7f08eb01 556 my $remove_version = 0.083;
557 skip "Remove in $remove_version", 3 if $DBIx::Class::VERSION < $remove_version;
3bb4eb8f 558
1225a9e0 559 for (qw/compare_relationship_keys pk_depends_on resolve_condition/) {
7f08eb01 560 ok (! DBIx::Class::ResultSource->can ($_), "$_ no longer provided by DBIx::Class::ResultSource, removed before $remove_version");
3bb4eb8f 561 }
562}
42a87bbb 563
564#------------------------------
565# READ THIS BEFORE "FIXING"
566#------------------------------
567#
568# make sure we got rid of discard_changes mess - this is a mess and a source
569# of great confusion. Here I simply die if the methods are available, which
570# is wrong on its own (we *have* to provide some sort of back-compat, even
571# if with warnings). Here is how I envision things should actually be. Also
572# note that a lot of the deprecation can be started today (i.e. the switch
573# from get_from_storage to copy_from_storage). So:
574#
575# $row->discard_changes =>
576# warning, and delegation to reload_from_storage
577#
578# $row->reload_from_storage =>
579# does what discard changes did in 0.08 - issues a query to the db
580# and repopulates all column slots, regardless of dirty states etc.
581#
582# $row->revert_changes =>
583# does what discard_changes should have done initially (before it became
584# a dual-purpose call). In order to make this work we will have to
585# augment $row to carry its own initial-state, much like svn has a
586# copy of the current checkout in contrast to cvs.
587#
588# my $db_row = $row->get_from_storage =>
589# warns and delegates to an improved name copy_from_storage, with the
590# same semantics
591#
592# my $db_row = $row->copy_from_storage =>
593# a much better/descriptive name than get_from_storage
594#
595#------------------------------
596# READ THIS BEFORE "FIXING"
597#------------------------------
598#
599SKIP: {
600 skip "Something needs to be done before 0.09", 2 if $DBIx::Class::VERSION < 0.09;
601
602 my $row = $schema->resultset ('Artist')->next;
603
604 for (qw/discard_changes get_from_storage/) {
605 ok (! $row->can ($_), "$_ needs *some* sort of facelift before 0.09 ships - current state of affairs is unacceptable");
606 }
607}
608
73d47f9f 609throws_ok { $schema->resultset} qr/resultset\(\) expects a source name/, 'resultset with no argument throws exception';
610
4f52479b 611throws_ok { $schema->source('Artist')->result_class->new( 'bugger' ) } qr/must be a hashref/;
612
42a87bbb 613done_testing;