packages feed

serdoc-binary-0.1.0.0: test/Main.hs

module Main
where

import Test.Tasty

import qualified Data.SerDoc.Binary.Test.Codec as Codec

tests :: TestTree
tests = testGroup "serdoc-binary"
          [ Codec.tests
          ]

main :: IO ()
main = defaultMain tests