nix-tree/test/Test.hs

13 lines
225 B
Haskell
Raw Permalink Normal View History

2021-02-23 10:55:03 +03:00
{-# LANGUAGE TemplateHaskell #-}
module Main where
import Hedgehog
import Hedgehog.Main
2021-09-04 13:09:30 +03:00
import qualified Test.Data.InvertedIndex
2021-02-23 10:55:03 +03:00
main :: IO ()
2021-09-04 13:09:30 +03:00
main =
defaultMain . map checkParallel $
[Test.Data.InvertedIndex.tests]