Popularity
6.5
Declining
Activity
0.0
Stable
15
3
5
Monthly Downloads: 42
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
Property based testing for Servant using Hedgehog
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
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)