hslua-marshalling-2.1.0: test/test-hslua-marshalling.hs
{-|
Module : Main
Copyright : © 2017-2022 Albert Krewinkel
License : MIT
Maintainer : Albert Krewinkel <tarleb+hslua@zeitkraut.de>
Tests for HsLua.
-}
import Test.Tasty (TestTree, defaultMain, testGroup)
import qualified HsLua.MarshallingTests
main :: IO ()
main = defaultMain tests
-- | HSpec tests
tests :: TestTree
tests = testGroup "HsLua" [HsLua.MarshallingTests.tests]