sourcephile
/
git
/
haskell
/
symantic.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
init
[haskell/symantic.git]
/
TFHOE
/
Expr
/
Test.hs
1
module Expr.Test where
2
3
import Test.Tasty
4
5
import qualified Expr.Fun.Test as Fun
6
import qualified Expr.Bool.Test as Bool
7
8
tests :: TestTree
9
tests =
10
testGroup "Expr"
11
[ Fun.tests
12
, Bool.tests
13
]