foundation-0.0.3: tests/Test/Data/ASCII.hs
-- |
-- Module: Test.Data.ASCII
--
{-# LANGUAGE NoImplicitPrelude #-}
module Test.Data.ASCII
( genAsciiChar
) where
import Foundation
import Foundation.Foreign
import Test.Tasty.QuickCheck
-- | a better generator for unicode Character
genAsciiChar :: Gen CUChar
genAsciiChar = toEnum <$> choose (1, 127)