matrix-media-expanded/test/Test.hs

12 lines
259 B
Haskell
Raw Normal View History

2023-06-10 14:12:37 +00:00
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]