Popularity
5.5
Growing
Activity
0.8
-
11
1
3
Monthly Downloads: 84
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
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.
-
hedgehog-classes
Hedgehog will eat your typeclass bugs -
hedgehog-servant
Hedgehog property testing for Servant APIs -
hedgehog-golden
Golden testing capabilities for hedgehog using Aeson
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of hedgehog-fakedata or a related project?
README
hedgehog-faker
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)