hspec-2.1.5: 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 = SpecWith ()

hspec :: Spec -> IO ()

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

describe :: String -> SpecWith a -> SpecWith a

The describe function combines a list of specs into a larger spec.

module Prelude