Rakefile in pacto-0.2.1 vs Rakefile in pacto-0.2.2

- old
+ new

@@ -1,16 +1,16 @@ require "bundler/gem_tasks" require 'rspec/core/rake_task' if defined?(RSpec) desc "Run unit tests" - task :spec do - abort unless system('rspec --option .rspec') + task :unit do + abort unless system('rspec --option .rspec_unit') end desc "Run integration tests" task :integration do abort unless system('rspec --option .rspec_integration') end - task :default => [:spec, :integration] + task :default => [:unit, :integration] end