/var/lib/ghc/package.conf.d/chell-0.4.0.1.conf is in libghc-chell-dev 0.4.0.1-6+b1.
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | name: chell
version: 0.4.0.1
id: chell-0.4.0.1-8D4g1YATsAaECyftIMH0BW
key: chell-0.4.0.1-8D4g1YATsAaECyftIMH0BW
license: MIT
maintainer: John Millikin <john@john-millikin.com>
homepage: https://john-millikin.com/software/chell/
synopsis: A simple and intuitive library for automated testing.
description:
Chell is a simple and intuitive library for automated testing. It natively
supports assertion-based testing, and can use companion libraries
such as @chell-quickcheck@ to support more complex testing strategies.
.
An example test suite, which verifies the behavior of artithmetic operators.
.
@
{-\# LANGUAGE TemplateHaskell \#-}
.
import Test.Chell
.
tests_Math :: Suite
tests_Math = suite \"math\"
  [ test_Addition
  , test_Subtraction
  ]
.
test_Addition :: Test
test_Addition = assertions \"addition\" $ do
  $expect (equal (2 + 1) 3)
  $expect (equal (1 + 2) 3)
.
test_Subtraction :: Test
test_Subtraction = assertions \"subtraction\" $ do
  $expect (equal (2 - 1) 1)
  $expect (equal (1 - 2) (-1))
.
main :: IO ()
main = defaultMain [tests_Math]
@
.
@
$ ghc --make chell-example.hs
$ ./chell-example
PASS: 2 tests run, 2 tests passed
@
category: Testing
author: John Millikin <john@john-millikin.com>
exposed: True
exposed-modules:
Test.Chell
hidden-modules: Test.Chell.Main Test.Chell.Output Test.Chell.Types
abi: 16f2f71930ea973a294fc6980899ea82
trusted: False
import-dirs: /usr/lib/haskell-packages/ghc/lib/x86_64-linux-ghc-8.0.1/chell-0.4.0.1-8D4g1YATsAaECyftIMH0BW
library-dirs: /usr/lib/haskell-packages/ghc/lib/x86_64-linux-ghc-8.0.1/chell-0.4.0.1-8D4g1YATsAaECyftIMH0BW
data-dir: /usr/share/chell
hs-libraries: HSchell-0.4.0.1-8D4g1YATsAaECyftIMH0BW
depends:
ansi-terminal-0.6.2.3-448ipfN5j28Ha0AgPiJmdI base-4.9.0.0
bytestring-0.10.8.1 options-1.2.1.1-DvKmt92WADIDSbuS7WrmU6
patience-0.1.1-B65C1NRz0al1tp0Blu1TPZ
random-1.1-54KmMHXjttlERYcr1mvsAe template-haskell-2.11.0.0
text-1.2.2.1-5QpmrLQApEZ4Ly9nMHWY0s transformers-0.5.2.0
haddock-interfaces: /usr/lib/ghc-doc/haddock/chell-0.4.0.1/chell.haddock
haddock-html: /usr/share/doc/libghc-chell-doc/html/
|