X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest.pm;h=e4b9b768af0c7bdcc88e8ee18c6a36775cd23960;hb=2cd3ccc410f4130275d001d797ccc914e24068e9;hp=2b6312caecca86ec519d10686b4504eeae713bf0;hpb=ff8a6e3ba942666ba98f18dccdf5ec6d8361355c;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest.pm b/t/lib/DBICTest.pm index 2b6312c..e4b9b76 100755 --- a/t/lib/DBICTest.pm +++ b/t/lib/DBICTest.pm @@ -315,10 +315,10 @@ sub populate_schema { ]); $schema->populate('BooksInLibrary', [ - [ qw/id owner title source/ ], - [ 1, 1, "Programming Perl", "Library" ], - [ 2, 1, "Dynamical Systems", "Library" ], - [ 3, 2, "Best Recipe Cookbook", "Library" ], + [ qw/id owner title source price/ ], + [ 1, 1, "Programming Perl", "Library", 23 ], + [ 2, 1, "Dynamical Systems", "Library", 37 ], + [ 3, 2, "Best Recipe Cookbook", "Library", 65 ], ]); }