haskell-foreign-rust/test/Main.hs

18 lines
548 B
Haskell
Raw Normal View History

2023-03-17 08:46:12 +00:00
module Main (main) where
import Test.Tasty
import qualified Test.Serialisation.JSON
import qualified Test.Serialisation.Raw.Base16
import qualified Test.Serialisation.Raw.Base58
import qualified Test.Serialisation.Raw.Base64
import qualified Test.Serialisation.Raw.Decimal
main :: IO ()
main = defaultMain $ testGroup "foreign-rust" [
Test.Serialisation.JSON.tests
, Test.Serialisation.Raw.Base16.tests
, Test.Serialisation.Raw.Base58.tests
, Test.Serialisation.Raw.Base64.tests
, Test.Serialisation.Raw.Decimal.tests
]