Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 659 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 659 Bytes

hedgehog-fakedata

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)