-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Quiet test runner (QuickCheck support) -- -- Quiet test runner (QuickCheck support) @package chell-quickcheck @version 0.1 module Test.Chell.QuickCheck -- | Convert a QuickCheck property to a Chell Suite. -- --
--   import Test.Chell
--   import Test.Chell.QuickCheck
--   import Test.QuickCheck hiding (property)
--   
--   tests :: [Suite]
--   tests =
--       [ suite "foo"
--           [ property "bar" (xs -> not (null xs) ==> length xs > 0)
--           ]
--       ]
--   
property :: Testable prop => Text -> prop -> Suite