blob: 753d1a941c46348c8dca8bef741ff8c7f1a76b99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import pytest
values = [(True) for x in range(20)]
@pytest.mark.parametrize("test_truth", values)
def test_all_true(test_truth):
assert test_truth
def test_death():
assert False, "kaboom"
|