From 645683f432d742f42f2769f589fe769585fb7aa0 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Wed, 7 Oct 2020 22:04:54 +0300 Subject: Tests: fixed loading selected module version. Previously, for PHP, Ruby, and Perl the latest version was always loaded in multi-version tests. --- test/unit/applications/lang/ruby.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test/unit/applications/lang/ruby.py') diff --git a/test/unit/applications/lang/ruby.py b/test/unit/applications/lang/ruby.py index 534227bd..a6c39b2a 100644 --- a/test/unit/applications/lang/ruby.py +++ b/test/unit/applications/lang/ruby.py @@ -7,13 +7,17 @@ class TestApplicationRuby(TestApplicationProto): def load(self, script, name='config.ru', **kwargs): script_path = option.test_dir + '/ruby/' + script + appication_type = self.get_appication_type() + + if appication_type is None: + appication_type = self.application_type self._load_conf( { "listeners": {"*:7080": {"pass": "applications/" + script}}, "applications": { script: { - "type": self.application_type, + "type": appication_type, "processes": {"spare": 0}, "working_directory": script_path, "script": script_path + '/' + name, -- cgit