Commit | Line | Data |
2a816814 |
1 | use strict; |
2 | use Test::More; |
3 | use IO::File; |
4 | |
5 | BEGIN { |
6 | eval "use DBD::SQLite"; |
7 | plan $@ |
8 | ? ( skip_all => 'needs DBD::SQLite for testing' ) |
22b15c96 |
9 | : ( tests => 3 ); |
2a816814 |
10 | } |
11 | |
12 | use lib qw(t/lib); |
13 | |
14 | use_ok('DBICTest'); |
15 | |
22b15c96 |
16 | use_ok('DBICTest::HelperRels'); |
17 | |
2a816814 |
18 | DBICTest::_db->storage->sql_maker->{'quote_char'} = q!'!; |
19 | DBICTest::_db->storage->sql_maker->{'name_sep'} = '.'; |
20 | |
21 | my $rs = DBICTest::CD->search( |
22 | { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' }, |
23 | { join => 'artist' }); |
24 | |
25 | cmp_ok( $rs->count, '==', 1, "join with fields quoted"); |
26 | |