12 lines
259 B
Haskell
12 lines
259 B
Haskell
|
module Test where
|
||
|
|
||
|
import Main.Utf8 qualified as Utf8
|
||
|
import Test.Codec qualified as Codec
|
||
|
import Test.Tasty (TestTree, defaultMain, testGroup)
|
||
|
|
||
|
main :: IO ()
|
||
|
main = Utf8.withUtf8 $ defaultMain tests
|
||
|
|
||
|
tests :: TestTree
|
||
|
tests = testGroup "Tests" [Codec.tests]
|