1
$:.unshift(File.dirname(__FILE__) + '/../../lib')
2
require 'cucumber/rake/task'
4
Cucumber::Rake::Task.new(:pretty) do |t|
5
t.cucumber_opts = %w{--tags ~@intentional_failure --format pretty -q}
8
Cucumber::Rake::Task.new(:html) do |t|
9
t.cucumber_opts = %w{--tags ~@intentional_failure --format html --out features.html}
12
Cucumber::Rake::Task.new(:progress) do |t|
13
t.cucumber_opts = %w{--tags ~@intentional_failure --format progress -i -s}
16
Cucumber::Rake::Task.new(:rerun) do |t|
17
t.cucumber_opts = %w{--tags ~@intentional_failure --format rerun -i -s}
20
task :default => [:pretty, :html, :progress, :rerun]
b'\\ No newline at end of file'