From b971627acc0a26c36a4c55b82c660172749b2031 Mon Sep 17 00:00:00 2001 From: Matt Todd Date: Fri, 17 Oct 2014 12:07:34 -0700 Subject: [PATCH] Include all tests in run --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 940d70f..5b19c5a 100644 --- a/Rakefile +++ b/Rakefile @@ -3,7 +3,7 @@ require 'rake/testtask' Rake::TestTask.new do |t| t.libs << "test" - t.pattern = "test/*_test.rb" + t.pattern = "test/**/*_test.rb" end task :default => :test