File: unit-tests.hs

package info (click to toggle)
taffybar 4.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 748 kB
  • sloc: haskell: 7,652; xml: 114; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 237 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
module Main where

import Test.Hspec
import Test.Hspec.Runner

import qualified UnitSpec
import qualified TestLibSpec

main :: IO ()
main = hspecWith defaultConfig $ do
  UnitSpec.spec
  describe "testlib Sanity Checks" TestLibSpec.spec