From 2ed470cbc5dee708ad3a066a650fef6a103fba8f Mon Sep 17 00:00:00 2001 From: David Cook Date: Thu, 15 Feb 2024 23:07:02 +0000 Subject: [PATCH] Bug 36098: (follow-up) extend test to check driver --- t/db_dependent/Koha/Session.t | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/Session.t b/t/db_dependent/Koha/Session.t index 3fe7cff42f..e9cce064c3 100755 --- a/t/db_dependent/Koha/Session.t +++ b/t/db_dependent/Koha/Session.t @@ -1,7 +1,7 @@ #!/usr/bin/perl use Modern::Perl; -use Test::More tests => 1; +use Test::More tests => 2; use t::lib::TestBuilder; use C4::Auth; @@ -27,3 +27,10 @@ subtest 'basic session fetch' => sub { $schema->storage->txn_rollback; }; + +subtest 'test session driver' => sub { + plan tests => 1; + + my $params = Koha::Session->_get_session_params(); + is( $params->{dsn}, 'serializer:yamlxs;driver:MySQL;id:md5', 'dsn setup correctly' ); +}; -- 2.30.2