-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | QuickCheck support for the Chell testing library -- -- QuickCheck support for the Chell testing library @package chell-quickcheck @version 0.2.2 module Test.Chell.QuickCheck -- | Convert a QuickCheck property to a Chell Test. -- --
--   import Test.Chell
--   import Test.Chell.QuickCheck
--   import Test.QuickCheck hiding (property)
--   
--   test_NullLength :: Test
--   test_NullLength = property "null-length"
--       (xs -> not (null xs) ==> length xs > 0)
--   
property :: Testable prop => String -> prop -> Test