package TestModules; use MyApp::Schema; MyApp::Schema->connection( 'dbi:SQLite:dbname=:memory:', '', '' ); MyApp::Schema->load_namespaces; MyApp::Schema->deploy; # set data MyApp::Schema->resultset('TestModule')->create({ id => 1, name => 'Test', }); 1;