鼻子参数化可以用于长鼻吗?

时间:2013-11-04 21:41:34

标签: python unit-testing

是否可以结合使用     https://pypi.python.org/pypi/nose-parameterized 同     https://pypi.python.org/pypi/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)

0 个答案:

没有答案