@@ -, +, @@ biblio.datecreated in tests --- t/db_dependent/Creators/Lib.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/t/db_dependent/Creators/Lib.t +++ a/t/db_dependent/Creators/Lib.t @@ -148,8 +148,8 @@ my $author3 = 'Author 3'; $query = ' INSERT INTO biblio - (title, author) - VALUES (?,?)'; + (title, author, datecreated) + VALUES (?,?, NOW())'; $insert_sth = $dbh->prepare($query); $insert_sth->execute( $title1, $author1 ); $insert_sth->execute( $title2, undef ); --