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
136 B
Python
6 lines
136 B
Python
from unit.applications.lang.go import TestApplicationGo
|
|
|
|
|
|
def check_go():
|
|
return TestApplicationGo.prepare_env('empty') is not None
|