Safe Haskell | None |
---|---|
Language | Haskell2010 |
Warning: This module is used by hspec-discover
. It is not part of the public API and may change at any time.
- type Spec = SpecWith ()
- hspec :: Spec -> IO ()
- class IsFormatter a where
- toFormatter :: a -> IO Formatter
- hspecWithFormatter :: IsFormatter a => a -> Spec -> IO ()
- postProcessSpec :: FilePath -> Spec -> Spec
- describe :: String -> SpecWith a -> SpecWith a
- module Prelude
Documentation
Run given spec and write a report to stdout
.
Exit with exitFailure
if at least one spec item fails.
class IsFormatter a where Source
toFormatter :: a -> IO Formatter Source
hspecWithFormatter :: IsFormatter a => a -> Spec -> IO () Source
postProcessSpec :: FilePath -> Spec -> Spec Source
describe :: String -> SpecWith a -> SpecWith a
The describe
function combines a list of specs into a larger spec.
module Prelude