Tests: unit module refactoring.
This commit is contained in:
21
test/unit/applications/lang/php.py
Normal file
21
test/unit/applications/lang/php.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from unit.applications.proto import TestApplicationProto
|
||||
|
||||
|
||||
class TestApplicationPHP(TestApplicationProto):
|
||||
def load(self, script, name='index.php'):
|
||||
script_path = self.current_dir + '/php/' + script
|
||||
|
||||
self.conf(
|
||||
{
|
||||
"listeners": {"*:7080": {"application": script}},
|
||||
"applications": {
|
||||
script: {
|
||||
"type": "php",
|
||||
"processes": {"spare": 0},
|
||||
"root": script_path,
|
||||
"working_directory": script_path,
|
||||
"index": name,
|
||||
}
|
||||
},
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user