packages feed

purescript-0.11.2: tests/TestPsci.hs

module TestPsci where

import Prelude ()
import Prelude.Compat

import Test.Hspec
import TestPsci.CommandTest (commandTests)
import TestPsci.CompletionTest (completionTests)
import TestPsci.EvalTest (evalTests)

main :: IO ()
main = hspec $ do
  completionTests
  commandTests
  evalTests