moonlight-category-0.1.0.0: test/indexed/IndexedTests.hs
module IndexedTests
( tests,
)
where
import qualified IndexedSpec
import qualified SimplexSpec
import Test.Tasty (TestTree, testGroup)
tests :: TestTree
tests =
testGroup
"indexed"
[ IndexedSpec.tests,
SimplexSpec.tests
]