shrub/pkg/hs-urbit/test/Main.hs

21 lines
358 B
Haskell
Raw Normal View History

module Main (main) where
import ClassyPrelude
import Test.QuickCheck hiding ((.&.))
import Test.Tasty
import Test.Tasty.QuickCheck
import Test.Tasty.TH
import Control.Concurrent
import qualified LogTests
import qualified DeriveNounTests
main :: IO ()
main =
defaultMain $ testGroup "Urbit"
[ LogTests.tests
, DeriveNounTests.tests
]