quickcheck-unicode: Generator and shrink functions for testing Unicode-related software.

[ bsd2, library, testing, text ] [ Propose Tags ]

Generator and shrink functions for testing Unicode-related software.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 1.0.0.0, 1.0.0.1, 1.0.1.0
Dependencies base (>=4.2 && <5), QuickCheck (>=2.7) [details]
License BSD-2-Clause
Copyright 2014-2017 Bryan O'Sullivan
Author Bryan O'Sullivan <bos@serpentine.com>
Maintainer Bryan O'Sullivan <bos@serpentine.com>
Category Testing, Text
Home page https://github.com/bos/quickcheck-unicode
Bug tracker https://github.com/bos/quickcheck-unicode/issues
Source repo head: git clone https://github.com/bos/quickcheck-unicode
head: hg clone https://bitbucket.org/bos/quickcheck-unicode
Uploaded by BryanOSullivan at 2017-05-21T01:54:39Z
Distributions Arch:1.0.1.0, Debian:1.0.1.0, LTSHaskell:1.0.1.0, NixOS:1.0.1.0, Stackage:1.0.1.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 8409 total (66 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-05-21 [all 1 reports]

Readme for quickcheck-unicode-1.0.1.0

[back to package description]

This Haskell package provides a QuickCheck data generator and shrink functions for testing software that uses Unicode data.

The default Arbitrary instance for the Char type intentionally generates only ASCII values. This can lead to a false sense of security in cases where Unicode compliance is required, as encodings that span multiple bytes or code units will simply not be exercised at all.

This module deliberately avoids using the text and bytestring packages to avoid pulling in extra dependencies.