hedgehog-fakedata: Use 'fakedata' with 'hedgehog'

[ bsd3, library, testing ] [ Propose Tags ]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1.0, 0.0.1.1, 0.0.1.2, 0.0.1.3, 0.0.1.4, 0.0.1.5
Change log ChangeLog.md
Dependencies base (>=4.7 && <5), fakedata (>=0.1.0), hedgehog (>=0.1 && <1.1), random (>=1.0.0.0 && <1.3) [details]
License BSD-3-Clause
Copyright 2020 Matt Parsons
Author Matt Parsons
Maintainer parsonsmatt@gmail.com
Category Testing
Home page https://github.com/parsonsmatt/hedgehog-fakedata#readme
Bug tracker https://github.com/parsonsmatt/hedgehog-fakedata/issues
Source repo head: git clone https://github.com/parsonsmatt/hedgehog-fakedata
Uploaded by parsonsmatt at 2021-02-05T15:33:12Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 2017 total (30 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2021-02-05 [all 1 reports]

Readme for hedgehog-fakedata-0.0.1.4

[back to package description]

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)