Switch the main dev branch back to 'master'
[dbsrgits/DBIx-Class.git] / t / sqlmaker / sqlite.t
CommitLineData
09cedb88 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
a5a7bb73 6use DBICTest ':DiffSQL';
09cedb88 7
8my $schema = DBICTest->init_schema;
9
10is_same_sql_bind(
dbc2b0e8 11 $schema->resultset('Artist')->search ({}, {for => 'update'})->as_query,
12 '(SELECT me.artistid, me.name, me.rank, me.charfield FROM artist me)', [],
13);
09cedb88 14
15done_testing;