addressbook/test/MyLibTest.hs
Mats Rauhala 87f6eb00f6 Bring the addressbook back up to date
- bytestring-trie is not available
- hls
- modern shell.nix
- base
- Re-implement trie, with benchmarks
- Realize my implementation of trie is slower than Data.Map, use that
  instead
2021-10-29 17:22:29 +03:00

18 lines
356 B
Haskell

module Main (main) where
import Test.Tasty
import qualified Test.Data.Email as Data.Email
import qualified Test.Data.Email.Header as Data.Email.Header
import qualified Test.Data.Trie as Data.Trie
tests :: TestTree
tests = testGroup "tests"
[ Data.Email.Header.tests
, Data.Email.tests
, Data.Trie.tests
]
main :: IO ()
main = defaultMain tests