diff --git a/Rakefile b/Rakefile index 961943b..182e118 100644 --- a/Rakefile +++ b/Rakefile @@ -20,7 +20,8 @@ namespace :test do end end -desc 'Run tests' -task :test => %w[test:units test:integration test:acceptance] +Rake::TestTask.new(:test) do |t| + t.pattern = "spec/**/*_spec.rb" +end task :default => [:rubocop, :test]