quickcheck-unicode

Generator and shrink functions for testing Unicode-related software.

https://github.com/bos/quickcheck-unicode

LTS Haskell 22.13:1.0.1.0
Stackage Nightly 2024-03-14:1.0.1.0
Latest on Hackage:1.0.1.0

See all snapshots quickcheck-unicode appears in

BSD-2-Clause licensed and maintained by Bryan O'Sullivan
This version can be pinned in stack with:quickcheck-unicode-1.0.1.0@sha256:ae9a291ce23b6320adab222911ed65b34ebdd49c84a8a074117841f2ccd18ce6,1051

Module documentation for 1.0.1.0

Depends on 2 packages(full list with versions):

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.