get rid of an empty trailing hashref if appropriate
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 23invoke_hardcode.t
CommitLineData
996be9ee 1use strict;
2use Test::More tests => 4;
3use lib qw(t/lib);
4use make_dbictest_db;
5
6eval { require DBD::SQLite };
7my $class = $@ ? 'SQLite2' : 'SQLite';
8
9package DBICTest::Schema;
10use base qw/ DBIx::Class::Schema::Loader /;
11
12__PACKAGE__->loader_options( relationships => 1 );
13__PACKAGE__->connection("dbi:$class:dbname=./t/dbictest.db");
14
15package main;
16
17my $schema_class = 'DBICTest::Schema';
18my $schema = $schema_class->clone;
19isa_ok($schema, 'DBIx::Class::Schema');
20
21my $foo_rs = $schema->resultset('Bar')->search({ barid => 3})->search_related('fooref');
22isa_ok($foo_rs, 'DBIx::Class::ResultSet');
23
24my $foo_first = $foo_rs->first;
25isa_ok($foo_first, 'DBICTest::Schema::Foo');
26
27my $foo_first_text = $foo_first->footext;
28is($foo_first_text, 'This is the text of the only Foo record associated with the Bar with barid 3');