4

是否可以将 https://pypi.python.org/pypi/nose-parameterizedhttps://pypi.python.org/pypi/proboscis结合使用 ?或者有没有其他方法可以用 proboscis 实现这种功能?我知道这个例子 https://github.com/rackerlabs/python-proboscis/blob/master/examples/example_factory/tests/service_tests.py 但我想要像这样简单的东西来声明一个测试用例:

@parameterized([
(2, 2, 4),
(2, 3, 8),
(1, 9, 1),
(0, 9, 0),
])
@test
def test_pow(base, exponent, expected):
    assert_equal(math.pow(base, exponent), expected)
4

0 回答 0