Files
nginx-unit/test/unit/check/regex.py
Andrei Zeliankou 0d3b31e671 Tests: features and options checks improved.
Now version output evaluates only once.
OpenSSL checks more carefully.
2022-11-15 00:39:21 +00:00

9 lines
131 B
Python

import re
def check_regex(output_version):
if re.search('--no-regex', output_version):
return False
return True