Added INSERT with example
[dbsrgits/SQL-Abstract-2.0-ish.git] / t / 003_quote.t
CommitLineData
8eda2119 1use strict;
2use warnings;
3
4use Test::More tests => 2;
5use Test::Exception;
6
7use_ok('SQL::Abstract') or BAIL_OUT( "$@" );
8
9my $sqla = SQL::Abstract->create(1);
10
11lives_ok {
12 $sqla->quote_chars('[]');
13} "coercion of quote_chars from Str works";