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

12 lines
289 B
Text
Raw Normal View History

2011-11-18 18:13:05 -05:00
require 'bundler/setup'
2011-11-12 17:06:57 -05:00
require 'bundler/gem_tasks'
2010-06-09 11:42:48 -04:00
require 'cucumber/rake/task'
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