mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2024-11-15 17:10:46 +00:00
6e40ceb346
add first tests
21 lines
667 B
Python
21 lines
667 B
Python
from nose.tools import assert_equal, nottest
|
|
from parameterized import parameterized, parameterized_class
|
|
|
|
import unittest
|
|
from tests import tests
|
|
|
|
#@nottest
|
|
@parameterized_class([
|
|
{ "val": False }, { "val": True }
|
|
])
|
|
class TestSetAndGetBoolHigher(unittest.TestCase):
|
|
""" strip tests, physical and virtual """
|
|
@parameterized.expand([
|
|
(0, 'mute'), (2, 'mono'), (3, 'A1'), (3, 'B3')
|
|
])
|
|
def test_it_sets_and_gets_strip_bool_params(self, index, param):
|
|
setattr(tests.strip[index], param, self.val)
|
|
retval = getattr(tests.strip[index], param)
|
|
self.assertTrue(isinstance(retval, bool))
|
|
assert_equal(retval, self.val)
|