This file is indexed.

/usr/share/doc/libghc-test-framework-hunit-doc/html/test-framework-hunit.txt is in libghc-test-framework-hunit-doc 0.3.0.1-2.

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
25
26
27
28
29
-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | HUnit support for the test-framework package.
--   
--   HUnit support for the test-framework package.
@package test-framework-hunit
@version 0.3.0.1


-- | Allows HUnit test cases to be used with the test-framework package.
--   
--   For an example of how to use test-framework, please see
--   <a>http://github.com/batterseapower/test-framework/raw/master/example/Test/Framework/Example.lhs</a>
module Test.Framework.Providers.HUnit

-- | Create a <a>Test</a> for a HUnit <a>Assertion</a>
testCase :: TestName -> Assertion -> Test

-- | Adapt an existing HUnit test into a list of test-framework tests. This
--   is useful when migrating your existing HUnit test suite to
--   test-framework.
hUnitTestToTests :: Test -> [Test]
instance Typeable TestCase
instance Testlike TestCaseRunning TestCaseResult TestCase
instance Show TestCaseResult
instance Show TestCaseRunning
instance TestResultlike TestCaseRunning TestCaseResult