test_visuals.py 253 Bytes Edit Raw Blame History 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 type(result) is Image.Image def test_exportGif(): exportGif() assert os.path.exists("./out.gif")