1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot_rails.git synced 2022-11-09 11:49:18 -05:00
thoughtbot--factory_bot_rails/Rakefile

13 lines
289 B
Text
Raw Normal View History

2011-11-12 09:43:52 -05:00
require 'bundler'
2010-06-09 11:42:48 -04:00
require 'cucumber/rake/task'
2011-11-12 09:43:52 -05:00
Bundler::GemHelper.install_tasks
2010-06-09 11:42:48 -04:00
Cucumber::Rake::Task.new(:cucumber) do |t|
t.fork = true
t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'progress')]
end
desc "Default: run the cucumber scenarios"
task :default => :cucumber