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)