About

Metadata

  • Last updated , by parsonsmatt
  • License BSD-3-Clause
  • Categories Testing
  • Maintained by: parsonsmatt@gmail.com

  • Lottery factor: 0

Links

Installation

Tested Compilers

  1. 8.8.2
  2. 8.6.5
  3. 8.4.4
  4. 8.2.2

Readme

hedgehog-faker

Build Status Hackage-Deps

This library lets you re-use the fakedata library to quickly and easily generate fake data for use in hedgehog generators.

import qualified Hedgehog.Gen as Gen
import qualified Faker.Name as Faker
import           Hedgehog.Gen.Faker (fake)

main :: IO ()
main = do
    print =<< Gen.sample (fake Faker.name)