Created
September 4, 2012 08:42
-
-
Save jmgarnier/3618631 to your computer and use it in GitHub Desktop.
spec.rake
This file contains hidden or 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
if defined? RSpec | |
task(:spec).clear | |
desc "Run all specs in spec directory starting with js specs" | |
RSpec::Core::RakeTask.new(:spec => ['konacha:run', 'db:test:prepare']) do |t| | |
t.pattern = './spec/**/*{_spec.rb,.feature}' | |
end | |
namespace :spec do | |
desc "Run the code examples in spec/acceptance" | |
RSpec::Core::RakeTask.new(:acceptance => 'db:test:prepare') do |t| | |
t.pattern = './spec/acceptance/**/*.feature' | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment