mirror of
https://github.com/github/semantic.git
synced 2024-12-18 12:21:57 +03:00
20 lines
633 B
Haskell
20 lines
633 B
Haskell
{-# LANGUAGE DisambiguateRecordFields, OverloadedStrings, TypeApplications #-}
|
|
module Main (main) where
|
|
|
|
import qualified System.Path as Path
|
|
import Test.Tasty
|
|
import TreeSitter.Python
|
|
import qualified TreeSitter.Python.AST as Py
|
|
import AST.Test
|
|
import AST.Unmarshal
|
|
|
|
main :: IO ()
|
|
main
|
|
= readCorpusFiles (Path.relDir "tree-sitter-python/vendor/tree-sitter-python/test/corpus")
|
|
>>= traverse (testCorpus parse)
|
|
>>= defaultMain . tests
|
|
where parse = parseByteString @Py.Module @() tree_sitter_python
|
|
|
|
tests :: [TestTree] -> TestTree
|
|
tests = testGroup "tree-sitter-python corpus tests"
|