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


-- | Allows to use checkers properties from hspec
--   
--   Allows to use <a>checkers</a> properties from <a>hspec</a>.
@package hspec-checkers
@version 0.1.0.2


-- | This module bridges between <a>checkers</a> and <a>hspec</a>. It makes
--   it easy to integrate tests for class laws provided by checkers into
--   test suites written with hspec.
--   
--   Here's an example testing that lists satisfy the <a>Monoid</a> laws:
--   
--   <pre>
--   import Test.Hspec -- <a>Hspec</a>
--   import Test.Hspec.Checkers -- <a>Checkers</a>
--   import Test.QuickCheck.Classes -- <a>Classes</a>
--   
--   main :: IO ()
--   main = <a>hspec</a> spec
--   
--   spec :: Spec
--   spec = do
--     <a>testBatch</a> (<a>monoid</a> (undefined :: [Int]))
--    
--   </pre>
module Test.Hspec.Checkers

-- | Allows to insert a <a>TestBatch</a> into a Spec.
testBatch :: TestBatch -> Spec
