summaryrefslogtreecommitdiff
path: root/t/Webmail.t
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2023-02-26 21:36:27 +0100
committerJannis M. Hoffmann <jannis@fehcom.de>2023-02-26 21:36:27 +0100
commit2abf462ca10c4ac8c4f815e608cad31851e966e3 (patch)
treeed18c4a4039a5972edc0b81ed79c9d57480f8e70 /t/Webmail.t
parentd0ffe11bd365b68d4da252b39d06d99f75d8cacb (diff)
Specified the interface for qmauth
Changes to configuration Added qmauth version written in Python Slight changes to pagination
Diffstat (limited to 't/Webmail.t')
-rw-r--r--t/Webmail.t8
1 files changed, 5 insertions, 3 deletions
diff --git a/t/Webmail.t b/t/Webmail.t
index 9218fb1..3deb547 100644
--- a/t/Webmail.t
+++ b/t/Webmail.t
@@ -14,9 +14,11 @@ my $pw = JWebmail::Model::ReadMails::MockJSON::VALID_PW;
my $t = Test::Mojo->new('JWebmail', {
- development => { read_mock => 'JWebmail::Model::ReadMails::MockJSON', block_writes => 1 },
- i18n => { default_language => DEFAULT_LANGUAGE },
- session => { secure => 'none' },
+ model => { read => { devel => { driver => 'JWebmail::Model::ReadMails::MockJSON' }},
+ write => { devel => { block_writes => 1 }}},
+ i18n => { default_language => DEFAULT_LANGUAGE, directory => 'lib/JWebmail/I18N' },
+ session => { secure => 'none' },
+ defaults => { scriptadmin => 'test@example.org' },
});
$t->get_ok('/')->status_is(200);