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

[ bsd3, library, testing ] [ Propose Tags ]

Modules

[Last Documentation]

  • Hedgehog
    • Gen
      • Hedgehog.Gen.Faker

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.2) [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 2020-06-19T18:28:18Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 2020 total (25 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2020-06-19 [all 3 reports]

Readme for hedgehog-fakedata-0.0.1.2

[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)