Skip to content

Commit

Permalink
fixed up rakefile to run ALL tests by default
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNotary committed Aug 28, 2012
1 parent 27ad8c0 commit fbba7cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -18,10 +18,10 @@ RSpec::Core::RakeTask.new(:integration) do |t|
end

desc "Run all specs"
RSpec::Core::RakeTask.new(:spec) do |t|
RSpec::Core::RakeTask.new(:all) do |t|
t.rspec_opts = %w(-fd -c)
end

task :default => :unit
task :default => :all
task :test => :unit

0 comments on commit fbba7cf

Please sign in to comment.