Prerequisites check moved to the module level to simplify class structure. Discovery and prerequisites checks functions moved to the separate files. Introduced "require" fixture to provide per-test requirements check.
6 lines
89 B
Python
6 lines
89 B
Python
import re
|
|
|
|
|
|
def check_njs(output_version):
|
|
return re.search('--njs', output_version)
|