diff options
author | Tiago Natel <t.nateldemoura@f5.com> | 2019-11-11 14:35:29 +0000 |
---|---|---|
committer | Tiago Natel <t.nateldemoura@f5.com> | 2019-11-11 14:35:29 +0000 |
commit | abbad122bb48cb1d8b650158a3e6180dbe5ee9e5 (patch) | |
tree | ac2199ac78c6902eb6c674600fc5c5ee718076fc /test/unit/applications/lang/perl.py | |
parent | 417cc7be7c0c6f6e62f0916f671bbf0a4460226b (diff) | |
download | unit-abbad122bb48cb1d8b650158a3e6180dbe5ee9e5.tar.gz unit-abbad122bb48cb1d8b650158a3e6180dbe5ee9e5.tar.bz2 |
Tests: added support for testing "user" and "group".
Diffstat (limited to 'test/unit/applications/lang/perl.py')
-rw-r--r-- | test/unit/applications/lang/perl.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/unit/applications/lang/perl.py b/test/unit/applications/lang/perl.py index 79df2cfa..d32aca33 100644 --- a/test/unit/applications/lang/perl.py +++ b/test/unit/applications/lang/perl.py @@ -4,7 +4,7 @@ from unit.applications.proto import TestApplicationProto class TestApplicationPerl(TestApplicationProto): application_type = "perl" - def load(self, script, name='psgi.pl'): + def load(self, script, name='psgi.pl', **kwargs): script_path = self.current_dir + '/perl/' + script self._load_conf( @@ -18,5 +18,6 @@ class TestApplicationPerl(TestApplicationProto): "script": script_path + '/' + name, } }, - } + }, + **kwargs ) |