forked from rc/aircox
mockup test files
This commit is contained in:
37
aircox/tests/controllers/test_log_archiver.py
Normal file
37
aircox/tests/controllers/test_log_archiver.py
Normal file
@ -0,0 +1,37 @@
|
||||
import pytest
|
||||
|
||||
from aircox.controllers.log_archiver import LogArchiver
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def log_archiver():
|
||||
return LogArchiver()
|
||||
|
||||
|
||||
class TestLogArchiver:
|
||||
def test_get_path(self):
|
||||
pass
|
||||
|
||||
def test_archive(self):
|
||||
pass
|
||||
|
||||
def test_archive_no_qs(self):
|
||||
pass
|
||||
|
||||
def test_archive_not_keep(self):
|
||||
pass
|
||||
|
||||
def test_sort_log(self):
|
||||
pass
|
||||
|
||||
def test_serialize(self):
|
||||
pass
|
||||
|
||||
def test_load(self):
|
||||
pass
|
||||
|
||||
def test_load_file_not_exists(self):
|
||||
pass
|
||||
|
||||
def test_get_relations(self):
|
||||
pass
|
Reference in New Issue
Block a user