Rakefile in stove-1.1.2 vs Rakefile in stove-2.0.0.beta.1
- old
+ new
@@ -1,15 +1,30 @@
require 'bundler/gem_tasks'
+
+require 'cucumber/rake/task'
+Cucumber::Rake::Task.new(:acceptance) do |t|
+ t.cucumber_opts = [].tap do |a|
+ a.push('--color')
+ a.push('--format progress')
+ a.push('--strict')
+ a.push('--tags ~@wip')
+ end.join(' ')
+end
+
+desc 'Run all tests'
+task :test => [:acceptance]
+
+task :default => [:test]