pact-time-0.2.0.0: test/Main.hs
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
-- |
-- Module: Main
-- Copyright: Copyright © 2021 Kadena LLC.
-- License: MIT
-- Maintainer: Lars Kuhtz <lars@kadena.io>
-- Stability: experimental
--
-- TODO
--
module Main
( main
) where
import Test.Tasty
-- internal modules
import qualified Test.Pact.Time.Format (tests)
main :: IO ()
main = defaultMain $ testGroup "tests"
[ Test.Pact.Time.Format.tests
]