DEV Community

Discussion on: Introduction to properties-driven development

Collapse
 
jwkicklighter profile image
Jordan Kicklighter

In the Ruby world, we use Faker and FactoryBot to help handle the generator code. Makes it very easy to write these explicit generators (e.g. give me a number between 0 and 5000) with a DSL that's very easy to understand.

Collapse
 
ksaaskil profile image
Kimmo Sääskilahti

Thanks for your comment! I haven't coded in Ruby but it's always interesting to see how libraries in other languages solve similar problems.