mockup test files

This commit is contained in:
bkfox
2023-06-21 01:37:45 +02:00
parent 25dcce742c
commit d15ca98447
7 changed files with 156 additions and 8 deletions

View File

@ -0,0 +1,47 @@
import pytest
from aircox.controllers.sound_stats import SoxStats, SoundStats
@pytest.fixture
def sox_stats():
return SoxStats()
@pytest.fixture
def sound_stats():
return SoundStats()
class TestSoxStats:
def test___init__(self):
pass
def test_get(self):
pass
def test_parse(self):
pass
def test_analyse(self):
pass
class TestSoundStats:
def test___init__(self):
pass
def test_get_file_stats(self):
pass
def test_analyze(self):
pass
def test_analyze_no_sample_length(self):
pass
def test_check(self):
pass
def test_resume(self):
pass