Added quote char test, supported quoting in S::A subclass for joins
[dbsrgits/DBIx-Class.git] / t / 19quotes.t
CommitLineData
2a816814 1use strict;
2use Test::More;
3use IO::File;
4
5BEGIN {
6 eval "use DBD::SQLite";
7 plan $@
8 ? ( skip_all => 'needs DBD::SQLite for testing' )
9 : ( tests => 2 );
10}
11
12use lib qw(t/lib);
13
14use_ok('DBICTest');
15
16DBICTest::_db->storage->sql_maker->{'quote_char'} = q!'!;
17DBICTest::_db->storage->sql_maker->{'name_sep'} = '.';
18
19my $rs = DBICTest::CD->search(
20 { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
21 { join => 'artist' });
22
23cmp_ok( $rs->count, '==', 1, "join with fields quoted");
24