vty/test/verify_empty_image_props.hs
coreyoconnor 3acd7121c3 add basic empty_image test
Ignore-this: ad4af1ae06455cd9a375d98cda4732ec

darcs-hash:20090906024946-f0a0d-f53090841bda6a957a0dc163ac9ef277dd52d38c.gz
2009-09-05 19:49:46 -07:00

14 lines
275 B
Haskell

{-# LANGUAGE ScopedTypeVariables #-}
module Main where
import Verify
-- should be exported by Graphics.Vty.Picture
import Graphics.Vty.Picture ( Image, empty_image )
main = run_test $ do
-- should provide an image type.
let _ :: Image = empty_image
return ()