apropos-tx setup

This commit is contained in:
Emily Martins 2022-03-09 19:32:13 +01:00
parent 1755ec0a19
commit 9aa5f5b1a3
17 changed files with 695 additions and 54 deletions

22
agora-test/Spec.hs Normal file
View file

@ -0,0 +1,22 @@
--------------------------------------------------------------------------------
import Prelude
--------------------------------------------------------------------------------
import Test.Tasty (defaultMain, testGroup)
--------------------------------------------------------------------------------
import Spec.Int
main :: IO ()
main =
defaultMain $
testGroup
"apropos-tx"
[ testGroup
"Int"
[ intPlutarchTests
]
]