always, always cleanup after myself in tests. sigh.

This commit is contained in:
Colin Kuskie 2007-11-09 22:43:19 +00:00
parent 57ff4405a6
commit 175304e915

View file

@ -262,3 +262,8 @@ $hrefHref = $session->db->buildHashRefOfHashRefs('select message, myIndex from t
'myIndex' => $_->[0] } }
grep { $_->[2] eq 'B' } @tableData;
cmp_deeply($hrefHref, \%expected, 'buildHashRefOfHashRefs, 2 columns, 1 param');
END: {
$session->db->dbh->do('DROP TABLE IF EXISTS testTable');
}