aboutsummaryrefslogtreecommitdiff
path: root/test/Main.hs
blob: 7e626418d70457eb0659e9cf9e40fb79f7ea45d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Main where

import Test.Tasty

import qualified Tests.C


main :: IO ()
main = defaultMain $
  testGroup "Tests"
    [Tests.C.tests]