This file is indexed.

/usr/share/doc/libghc-chell-quickcheck2-doc/html/chell-quickcheck.txt is in libghc-chell-quickcheck2-doc 0.2.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
-- 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.4

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