factory_pal
factory_pal copied to clipboard
A Scala framework for creating objects as test data. Say no to Mocks
Add link for Factory Girl, fix heading typos, remove reference to Scala 2.10 as unreleased, remove Bitdeli badge as this seems to be defunct.
This fixes issue #18
Is it possible to call `isRandom` but specifying the possible values? Something like: ``` FactoryPal.register[Person]() { person => person.age.isRandom(18, 19, 20) } ``` @mgonto
The sbt-idea plugin, specified as plugin dependency in [plugins.sbt](https://github.com/mgonto/factory_pal/blob/master/framework-src/project/plugins.sbt#L9) is no longer available in this version, breaking the build with: > sbt.ResolveException: unresolved dependency: com.github.mpeltonen#sbt-idea;1.2.0-SNAPSHOT: not found
scala has reach version 2.11. could you please update the documentation on how to use it in my own project. I would expect just to add a line in `build.sbt`...
Right now you can have multiple templates for a certain Class. I want to let the user inherit templates, so that you can create a new template based on another....