Class usage came from the unittest framework and it was always redundant after migration to the pytest. This commit removes classes from files containing tests to make them more readable and understandable.
6 lines
128 B
Python
6 lines
128 B
Python
from unit.applications.lang.go import ApplicationGo
|
|
|
|
|
|
def check_go():
|
|
return ApplicationGo.prepare_env('empty') is not None
|