2012-08-19 21:38:16 -07:00
|
|
|
require 'bundler'
|
|
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
|
2012-08-22 10:54:13 -07:00
|
|
|
require 'cucumber/rake/task'
|
2012-08-19 21:38:16 -07:00
|
|
|
|
2012-08-22 10:54:13 -07:00
|
|
|
Cucumber::Rake::Task.new(:cucumber, 'Run features that should pass') do |t|
|
|
|
|
t.cucumber_opts = "--color --tags ~@wip --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
|
|
|
end
|
2012-08-19 21:38:16 -07:00
|
|
|
|
|
|
|
require 'rake/clean'
|
|
|
|
|
2012-08-22 10:54:13 -07:00
|
|
|
task :test => ["cucumber"]
|
2012-08-20 10:52:29 -07:00
|
|
|
|
2013-09-21 12:29:10 -03:00
|
|
|
task :default => :test
|