-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Contributed functionality for Hspec
--   
--   Contributed functionality for Hspec
@package hspec-contrib
@version 0.5.1


module Test.Hspec.Contrib.HUnit

-- | Convert a HUnit test suite to a spec. This can be used to run existing
--   HUnit tests with Hspec.
fromHUnitTest :: Test -> Spec

-- | <tt>specListFromHUnitTest</tt> is similar to <a>fromHUnitTest</a>, but
--   it constructs a list of <a>SpecTree</a>s instead of a <a>Spec</a>.
specListFromHUnitTest :: Test -> [SpecTree ()]


module Test.Hspec.Contrib.Retry

-- | Retry evaluating example that may be failed until success.
retryWith :: Int -> a -> Retry a
instance Test.Hspec.Core.Example.Example a => Test.Hspec.Core.Example.Example (Test.Hspec.Contrib.Retry.Retry a)
