Marcel de Rooy
71c75f4773
We need this file here already. Copied from bug 18226 and adjusted in order to keep qa tools quiet. Test plan: Run t/db_dependent/01-test_dbic.t again. Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
9 lines
294 B
Perl
9 lines
294 B
Perl
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',
|
|
};
|