Mats Rauhala
87f6eb00f6
- 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
18 lines
356 B
Haskell
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
|