From d1e085097a85fe6bc0e42331e0841c1e9257fbc4 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 11 Apr 2015 16:28:24 -0400 Subject: Use specs, create Board Use specs for testing, create a spec for the Board class. Simple functionality and test to print a grid of dots for the board. --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Rakefile') 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 -- cgit v1.2.3