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


-- | HUnit support for the Chell testing library
--   
--   HUnit support for the Chell testing library
@package chell-hunit
@version 0.2

module Test.Chell.HUnit

-- | Convert a sequence of HUnit assertions (embedded in IO) to a Chell
--   <a>Test</a>.
--   
--   <pre>
--   import Test.Chell
--   import Test.Chell.HUnit
--   import Test.HUnit
--   
--   test_Addition :: Test
--   test_addition = hunit "addition" $ do
--       1 + 2 @?= 3
--       2 + 3 @?= 5
--   </pre>
hunit :: String -> Assertion -> Test
