mirror of
https://github.com/github/semantic.git
synced 2024-11-24 00:42:33 +03:00
12 lines
192 B
Haskell
12 lines
192 B
Haskell
|
module Main
|
||
|
( main
|
||
|
) where
|
||
|
|
||
|
import qualified Source.Test as Source
|
||
|
import Test.Tasty as Tasty
|
||
|
|
||
|
main :: IO ()
|
||
|
main = defaultMain $ testGroup "semantic-source"
|
||
|
[ Source.testTree
|
||
|
]
|