hspec-1.12.1: A Testing Framework for Haskell

Safe HaskellNone
LanguageHaskell2010

Test.Hspec.Discover

Description

Warning: This module is used by hspec-discover. It is not part of the public API and may change at any time.

Synopsis

Documentation

type Spec = SpecM () Source

hspec :: Spec -> IO () Source

Run given spec and write a report to stdout. Exit with exitFailure if at least one spec item fails.

describe :: String -> Spec -> Spec Source

Combine a list of specs into a larger spec.