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


-- | QuickCheck support for the Chell testing library
--   
--   QuickCheck support for the <a>Chell</a> testing library.
@package chell-quickcheck
@version 0.2.5.2

module Test.Chell.QuickCheck

-- | Convert a QuickCheck property to a Chell <a>Test</a>.
--   
--   <pre>
--   import Test.Chell
--   import Test.Chell.QuickCheck
--   import Test.QuickCheck hiding (property)
--   
--   test_NullLength :: Test
--   test_NullLength = property "null-length"
--       (xs -&gt; not (null xs) ==&gt; length xs &gt; 0)
--    
--   </pre>
property :: Testable prop => String -> prop -> Test
