Popularity
6.7
Growing
Activity
0.0
Stable
15
4
5

Monthly Downloads: 46
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Testing     Hedgehog    
Latest version: v0.0.1.3

hedgehog-fakedata alternatives and similar packages

Based on the "hedgehog" category.
Alternatively, view hedgehog-fakedata alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of hedgehog-fakedata or a related project?

Add another 'hedgehog' Package

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)