mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 01:01:37 +03:00
21 lines
358 B
Haskell
21 lines
358 B
Haskell
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
|
|
]
|