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)