Skip to content

Commit

Permalink
Add a rake task to run the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwynne committed Sep 29, 2011
1 parent d8335e0 commit fd14c0d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
task :cucumber do
sh "cucumber -f progress"
end

task :rspec do
sh "rspec spec"
end

task :default => [:rspec, :cucumber]

0 comments on commit fd14c0d

Please sign in to comment.