Tests: pathlib used where appropriate
Also fixed various pylint errors and style issues.
This commit is contained in:
@@ -2,6 +2,7 @@ import os
|
||||
from pathlib import Path
|
||||
|
||||
import pytest
|
||||
|
||||
from unit.applications.proto import ApplicationProto
|
||||
|
||||
client = ApplicationProto()
|
||||
@@ -11,9 +12,11 @@ client = ApplicationProto()
|
||||
def setup_method_fixture(temp_dir):
|
||||
os.makedirs(f'{temp_dir}/assets/dir')
|
||||
os.makedirs(f'{temp_dir}/assets/d$r')
|
||||
Path(f'{temp_dir}/assets/index.html').write_text('0123456789')
|
||||
Path(f'{temp_dir}/assets/dir/file').write_text('file')
|
||||
Path(f'{temp_dir}/assets/d$r/file').write_text('d$r')
|
||||
Path(f'{temp_dir}/assets/index.html').write_text(
|
||||
'0123456789', encoding='utf-8'
|
||||
)
|
||||
Path(f'{temp_dir}/assets/dir/file').write_text('file', encoding='utf-8')
|
||||
Path(f'{temp_dir}/assets/d$r/file').write_text('d$r', encoding='utf-8')
|
||||
|
||||
assert 'success' in client.conf(
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user