mute prop added to dca class

mute tests added

patch bump
This commit is contained in:
onyx-and-iris
2022-11-10 12:10:01 +00:00
parent e7d38bb9d7
commit a09b07e1c2
4 changed files with 43 additions and 1 deletions

View File

@@ -5,6 +5,23 @@ from tests.x32 import data, tests
""" STRIP TESTS """
class TestSetAndGetStripMuteHigher:
"""Mute"""
__test__ = True
def setup_class(self):
self.target = getattr(tests, "strip")[data.strip]
@pytest.mark.parametrize(
"param,value",
[("mute", True), ("mute", False)],
)
def test_it_sets_and_gets_strip_mute_bool_params(self, param, value):
setattr(self.target, param, value)
assert getattr(self.target, param) == value
class TestSetAndGetStripMixHigher:
"""Mix"""

View File

@@ -106,6 +106,23 @@ class TestSetAndGetLRGEQHigher:
""" STRIP TESTS """
class TestSetAndGetStripMuteHigher:
"""Mute"""
__test__ = True
def setup_class(self):
self.target = getattr(tests, "strip")[data.strip]
@pytest.mark.parametrize(
"param,value",
[("mute", True), ("mute", False)],
)
def test_it_sets_and_gets_strip_mute_bool_params(self, param, value):
setattr(self.target, param, value)
assert getattr(self.target, param) == value
class TestSetAndGetStripMixHigher:
"""Mix"""