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.
26 lines
555 B
Python
26 lines
555 B
Python
import json
|
|
|
|
from unit.http import HTTP1
|
|
from unit.option import option
|
|
|
|
http = HTTP1()
|
|
|
|
|
|
def check_unix_abstract():
|
|
return (
|
|
'success'
|
|
in http.put(
|
|
url='/config',
|
|
sock_type='unix',
|
|
addr=f'{option.temp_dir}/control.unit.sock',
|
|
body=json.dumps(
|
|
{
|
|
"listeners": {
|
|
f'unix:@{option.temp_dir}/sock': {"pass": "routes"}
|
|
},
|
|
"routes": [],
|
|
}
|
|
),
|
|
)['body']
|
|
)
|