File: test-hslua-core.hs

package info (click to toggle)
haskell-hslua-core 2.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: haskell: 2,243; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 402 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{-|
Module      : Main
Copyright   : © 2017-2024 Albert Krewinkel
License     : MIT
Maintainer  : Albert Krewinkel <tarleb@hslua.org>

Tests for HsLua.Core.
-}
import Test.Tasty (TestTree, defaultMain, testGroup)

import qualified HsLua.CoreTests

-- | Runs tests.
main :: IO ()
main = defaultMain tests

-- | HsLua core tests.
tests :: TestTree
tests = testGroup "hslua-core" [HsLua.CoreTests.tests]