forked from rc/aircox
mockup test files
This commit is contained in:
47
aircox/tests/controllers/test_sound_stats.py
Normal file
47
aircox/tests/controllers/test_sound_stats.py
Normal 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
|
Reference in New Issue
Block a user