From b9da4f2fa708b997f7486d48c9383dc173739ef8 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Tue, 2 May 2017 15:44:47 +0200 Subject: [PATCH] Bug 18286: [Follow-up] Add t/etc/schema.pl Content-Type: text/plain; charset=utf-8 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 --- t/etc/schema.pl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 t/etc/schema.pl diff --git a/t/etc/schema.pl b/t/etc/schema.pl new file mode 100644 index 0000000..52eccbe --- /dev/null +++ b/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', +}; -- 2.1.4