diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-02-05 15:39:11 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-02-05 15:39:11 +0300 |
commit | 3faa154223d0e4013bcfc07d71cea5ed671dfdf8 (patch) | |
tree | e967006e711e43ab4ad870275784d3a12fe263a6 /test/test_php_basic.py | |
parent | f7195e7016202a50eb8779154e95cdd1bbc58b0f (diff) | |
download | unit-3faa154223d0e4013bcfc07d71cea5ed671dfdf8.tar.gz unit-3faa154223d0e4013bcfc07d71cea5ed671dfdf8.tar.bz2 |
Tests: adjusted check_version()'s.
Diffstat (limited to 'test/test_php_basic.py')
-rw-r--r-- | test/test_php_basic.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test_php_basic.py b/test/test_php_basic.py index 1487a9c5..884b49ee 100644 --- a/test/test_php_basic.py +++ b/test/test_php_basic.py @@ -4,7 +4,10 @@ import unit class TestUnitBasic(unit.TestUnitControl): def setUpClass(): - unit.TestUnit().check_modules('php') + u = unit.TestUnit() + + u.check_modules('php') + u.check_version('0.5') conf_app = { "app": { |