@hackage quickcheck-unicode1.0.1.0
Generator and shrink functions for testing Unicode-related software.
Categories
License
BSD-2-Clause
Maintainer
Bryan O'Sullivan <bos@serpentine.com>
Links
Versions
Installation
Dependencies (2)
- QuickCheck >=2.7
- base >=4.2 && <5 Show all…
Dependents (13)
@hackage/string-interpolate, @hackage/text-utf8, @hackage/binary-parsers, @hackage/inline-java, @hackage/acme-everything, @hackage/passman-core, Show all…
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.