Parametrized test

This commit is contained in:
Andrew Murray 2020-06-04 07:56:14 +10:00
parent f5e9252b12
commit a5ef2b4499

View File

@ -873,8 +873,9 @@ def test_wide_line_dot():
assert_image_similar(im, Image.open(expected), 1) assert_image_similar(im, Image.open(expected), 1)
def test_line_joint(): @pytest.mark.parametrize(
for xy in [ "xy",
[
[ [
(400, 280), (400, 280),
(380, 280), (380, 280),
@ -951,7 +952,9 @@ def test_line_joint():
250, 250,
100, 100,
], ],
]: ],
)
def test_line_joint(xy):
im = Image.new("RGB", (500, 325)) im = Image.new("RGB", (500, 325))
draw = ImageDraw.Draw(im) draw = ImageDraw.Draw(im)
expected = "Tests/images/imagedraw_line_joint_curve.png" expected = "Tests/images/imagedraw_line_joint_curve.png"