mirror of
https://github.com/Steffo99/flyingsnake.git
synced 2024-12-22 06:34:18 +00:00
Update test_flyingsnake.py
This commit is contained in:
parent
db2dac01d5
commit
e705ca6c4b
1 changed files with 2 additions and 2 deletions
|
@ -7,5 +7,5 @@ from PIL import Image
|
|||
# Main integration test
|
||||
def test_full_render():
|
||||
runner = CliRunner()
|
||||
result = runner.invoke(flyingsnake.flyingsnake, ["./Small_Example.wld", "./Small_Example_full.png"])
|
||||
assert Image.open("./Small_Example_full.png") == Image.open("./Small_Example_full_prerendered.png")
|
||||
result = runner.invoke(flyingsnake.flyingsnake, ["./tests/Small_Example.wld", "./tests/Small_Example_full.png"])
|
||||
assert Image.open("./tests/Small_Example_full.png") == Image.open("./tests/Small_Example_full_prerendered.png")
|
||||
|
|
Loading…
Reference in a new issue