From 3faa154223d0e4013bcfc07d71cea5ed671dfdf8 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Mon, 5 Feb 2018 15:39:11 +0300 Subject: Tests: adjusted check_version()'s. --- test/test_configuration.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/test_configuration.py') diff --git a/test/test_configuration.py b/test/test_configuration.py index 700e4aa1..b5b6a179 100644 --- a/test/test_configuration.py +++ b/test/test_configuration.py @@ -4,7 +4,10 @@ import unit class TestUnitConfiguration(unit.TestUnitControl): def setUpClass(): - unit.TestUnit().check_modules('python') + u = unit.TestUnit() + + u.check_modules('python') + u.check_version('0.5') def test_json_leading_zero(self): self.assertIn('error', self.conf('00'), 'leading zero') -- cgit