File: Spec.hs

package info (click to toggle)
haskell-hspec-expectations 0.8.4-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 92 kB
  • sloc: haskell: 308; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Main where

import Test.Hspec

import qualified Test.Hspec.ExpectationsSpec
import qualified Test.Hspec.Expectations.MatcherSpec

spec :: Spec
spec = do
  describe "Test.Hspec.ExpectationsSpec" Test.Hspec.ExpectationsSpec.spec
  describe "Test.Hspec.Expectations.MatcherSpec" Test.Hspec.Expectations.MatcherSpec.spec

main :: IO ()
main = hspec spec