aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorTeddy Wing2015-04-16 02:13:04 -0400
committerTeddy Wing2015-04-16 02:13:04 -0400
commit6984fc31370564332ceab60c203cd6f1e695d61a (patch)
treea53d6b3ecf3c1ba4f35fcd245c30757e1a266e11 /Rakefile
parentfa951e520b7637d9e67c31a0a8b61733e253f90b (diff)
parent93351518faf3bb4f63b4a3cc1ef28f5c06e09f01 (diff)
downloadtic-tac-toe-master.tar.bz2
Merge branch 'rspec-style'HEADmaster
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index b642467..8cc2e02 100644
--- a/Rakefile
+++ b/Rakefile
@@ -2,7 +2,9 @@ require 'rake'
require 'rake/testtask'
Rake::TestTask.new do |t|
- t.pattern = 'test/**/*_test.rb'
+ t.libs << '.'
+ t.libs << 'spec'
+ t.pattern = 'spec/**/*_spec.rb'
end
task :default => :test