mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2025-01-18 02:20:48 +00:00
Delete test_higher.py
remove duplicate file
This commit is contained in:
parent
44a66466c2
commit
9e5b2067d1
@ -1,20 +0,0 @@
|
||||
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)
|
Loading…
Reference in New Issue
Block a user