urbit-hob

Haskell utilities for phonemic base wrangling.
git clone git://git.jtobin.io/urbit-hob.git
Log | Files | Refs | README | LICENSE

Co.hs (219B)


      1 module Main where
      2 
      3 import qualified Co.Tests.Property as P
      4 import qualified Co.Tests.Unit as U
      5 import Test.Hspec
      6 
      7 main :: IO ()
      8 main =
      9   hspec $ do
     10     context "property tests" P.tests
     11     context "unit tests" U.tests
     12