mirror of
https://github.com/github/semantic.git
synced 2024-11-23 16:37:50 +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
|
|
]
|