DBIx-Class-Helpers

 view release on metacpan or  search on metacpan

t/ResultSet/IgnoreWantarray.t  view on Meta::CPAN

#!perl

use strict;
use warnings;

use lib 't/lib';
use Test::More;
use Test::Fatal;

use TestSchema;
TestSchema::ResultSet->load_components('Helper::ResultSet::IgnoreWantarray');

my $schema = TestSchema->deploy_or_connect();
$schema->prepopulate;

my ($rs) = $schema->resultset('Foo')->search;
my ($rs2) = $schema->resultset('Bar')->search;
my ($rs3) = $schema->resultset('Foo')->first->bars;
my ($rs4) = $schema->resultset('Bar')->first->foos;

isa_ok $rs, 'DBIx::Class::ResultSet';
isa_ok $rs2, 'DBIx::Class::ResultSet';
isa_ok $rs3, 'DBIx::Class::ResultSet';
isa_ok $rs4, 'DBIx::Class::ResultSet';

like(exception {
   $schema->resultset('Bar')->search
}, qr/search is \*not\* a mutator/, 'correctly die in void ctx');

done_testing;



( run in 1.378 second using v1.01-cache-2.11-cpan-54e63673c56 )