mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-09 15:52:37 +03:00
Parametrized test
This commit is contained in:
parent
f5e9252b12
commit
a5ef2b4499
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user