Created
July 15, 2011 16:56
-
-
Save gotwalt/1085069 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rake/testtask' | |
require 'cucumber/rake/task' | |
Rake::TestTask.new(:test) do |t| | |
t.libs << 'spec' | |
t.pattern = 'spec/**/*_spec.rb' | |
t.verbose = true | |
end | |
Cucumber::Rake::Task.new do |t| | |
t.cucumber_opts = %w{--format pretty} | |
end | |
task :default => :test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment