Your IP : 216.73.216.1


Current Path : /usr/share/doc/perl-DBIx-Class/t/sqlmaker/
Upload File :
Current File : //usr/share/doc/perl-DBIx-Class/t/sqlmaker/sqlite.t

use strict;
use warnings;

use Test::More;
use lib qw(t/lib);
use DBICTest ':DiffSQL';

my $schema = DBICTest->init_schema;

is_same_sql_bind(
  $schema->resultset('Artist')->search ({}, {for => 'update'})->as_query,
  '(SELECT me.artistid, me.name, me.rank, me.charfield FROM artist me)', [],
);

done_testing;