mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-26 03:33:10 +03:00
15 lines
297 B
Haskell
15 lines
297 B
Haskell
{-# LANGUAGE ScopedTypeVariables #-}
|
|
module VerifyEmptyImageProps where
|
|
|
|
import Verify
|
|
|
|
-- should be exported by Graphics.Vty.Picture
|
|
import Graphics.Vty.Image ( Image, emptyImage )
|
|
|
|
tests :: IO [Test]
|
|
tests = do
|
|
-- should provide an image type.
|
|
let _ :: Image = emptyImage
|
|
return []
|
|
|