test_visuals.py 257 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import os from visuals import createFrame, exportGif from PIL import Image def test_createFrame(): result = createFrame(100,100,1) assert isinstance(result, Image.Image) def test_exportGif(): exportGif() assert os.path.exists("./out.gif")