forked from rc/aircox
38 lines
571 B
Python
38 lines
571 B
Python
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
|