1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# $Id$
use strict;
use lib 't/lib';
use Test::More;
use Test::Exception;
use DodTestUtil;
BEGIN { DodTestUtil->check_driver }
plan tests => 3;
use ErrorTest;
setup_dbs({
global => [ qw( error_test ) ],
});
my $t = ErrorTest->new;
$t->foo('bar');
lives_ok { $t->insert } 'Inserted first record';
$t = ErrorTest->new;
$t->foo('bar');
dies_ok { $t->insert } 'Second insert fails';
is(ErrorTest->driver->last_error,
Data::ObjectDriver::Errors->UNIQUE_CONSTRAINT,
'Failed because of a unique constraint');
END {
disconnect_all(qw( ErrorTest ));
teardown_dbs(qw( global ));
}
|