@@ -, +, @@ --- t/etc/schema.pl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 t/etc/schema.pl --- a/t/etc/schema.pl +++ a/t/etc/schema.pl @@ -0,0 +1,9 @@ +use Modern::Perl; + +return { + schema_class => 'Koha::Schema', +# This is the default option when nothing is defined +# connect_info => ['dbi:SQLite:dbname=:memory:','',''], + connect_opts => { name_sep => '.', quote_char => '`', sqlite_unicode => 1 }, + fixture_class => '::Populate', +}; --