Deleted Added
1from conftest import option
2from unit.applications.proto import TestApplicationProto
3
4
5class TestApplicationRuby(TestApplicationProto):
6 application_type = "ruby"
7
8 def load(self, script, name='config.ru', **kwargs):
9 script_path = option.test_dir + '/ruby/' + script
10
11 self._load_conf(
12 {
13 "listeners": {"*:7080": {"pass": "applications/" + script}},
14 "applications": {
15 script: {
16 "type": self.get_application_type(),
17 "processes": {"spare": 0},
18 "working_directory": script_path,
19 "script": script_path + '/' + name,
20 }
21 },
22 },
23 **kwargs
24 )