X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=blobdiff_plain;f=t%2Flib%2FDBSchema.pm;h=3d01f23f1bc0260fa26d3c7a9d6487a0c7a100b2;hp=9b1dca6c18e353d713d30ed701aff7f391cdcbaa;hb=311dd083d47f66fb455316ddd0e9a85963a0733d;hpb=56694a5fbd2fc731b19231e192c5c8eae37c1646 diff --git a/t/lib/DBSchema.pm b/t/lib/DBSchema.pm index 9b1dca6..3d01f23 100644 --- a/t/lib/DBSchema.pm +++ b/t/lib/DBSchema.pm @@ -25,6 +25,13 @@ sub get_test_schema { my $deploy_attrs; $deploy_attrs->{add_drop_table} = 1 if tables_exist( $dsn, $user, $pass ); $schema->deploy( $deploy_attrs ); + $schema->populate('Personality', [ + [ qw/user_id / ], + [ '1'], + [ '2' ], + [ '3'], + ] + ); $schema->populate('User', [ [ qw/username name password / ], [ 'jgda', 'Jonas Alves', ''],