generative
generative copied to clipboard
Generative/property-based testing for RSpec
I'm using rspec 2. The generative tests operate like any other "describe" unless I set the GENERATIVE_COUNT environment variable. This is inconsistent with the README.
Using this issue to compile thoughts on this - Generative should give the user data generation capability out of the box - Generative should require another gem to accomplish this,...
``` ruby # Rakefile require 'rspec/core/rake_task' require 'generative/rake_task' RSpec::Core::RakeTask.new Generative::RakeTask.new task(:spec).enhance [:generative] task :default => :spec ``` Running rake causes the generative tests to run once first and then runs...