-- Tasty makes it easy to test your code. It is a test framework that can -- combine many different types of tests into one suite. See its website for -- help: . import qualified Test.Tasty -- Hspec is one of the providers for Tasty. It provides a nice syntax for -- writing tests. Its website has more info: . import Test.Tasty.Hspec main :: IO () main = do test <- testSpec "animate-frames" spec Test.Tasty.defaultMain test spec :: Spec spec = parallel $ do it "is trivially true" $ do True `shouldBe` True