1#!perl
2
3use strict;
4use warnings;
5
6use lib 't/lib';
7use Test::More;
8
9use TestSchema;
10my $schema = TestSchema->deploy_or_connect();
11$schema->prepopulate;
12
13my $rs = $schema->resultset('Gnarly');
14
15isa_ok($rs->one_row, 'TestSchema::Result::Gnarly', '->one_row');
16
17done_testing;
18
19