File: Spec.hs

package info (click to toggle)
haskell-yi-core 0.19.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 756 kB
  • sloc: haskell: 10,038; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Test.Tasty

import qualified Yi.CompletionTreeTests as CompletionTree (testSuite)
import qualified Yi.CompletionTests     as Completion (testSuite)
import qualified Yi.TagTests            as Tag            (testSuite)
import qualified Yi.Mode.CommonTests    as Mode.Common    (testSuite)

main :: IO ()
main = defaultMain tests

tests :: TestTree
tests = testGroup "all" 
  [ Completion.testSuite
  , CompletionTree.testSuite
  , Tag.testSuite
  , Mode.Common.testSuite
  ]