1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
{-|
Module : HsLua.PackagingTests
Copyright : © 2020-2024 Albert Krewinkel
License : MIT
Maintainer : Albert Krewinkel <tarleb@hslua.org>
Test packaging
-}
module HsLua.PackagingTests (tests) where
import Test.Tasty (TestTree, testGroup)
import qualified HsLua.Packaging.DocumentationTests
import qualified HsLua.Packaging.FunctionTests
import qualified HsLua.Packaging.ModuleTests
import qualified HsLua.Packaging.RenderingTests
import qualified HsLua.Packaging.UDTypeTests
-- | Tests for package creation.
tests :: TestTree
tests = testGroup "Packaging"
[ HsLua.Packaging.FunctionTests.tests
, HsLua.Packaging.ModuleTests.tests
, HsLua.Packaging.RenderingTests.tests
, HsLua.Packaging.UDTypeTests.tests
, HsLua.Packaging.DocumentationTests.tests
]
|