aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorTeddy Wing2015-03-17 23:00:47 -0400
committerTeddy Wing2015-03-17 23:00:47 -0400
commitfa951e520b7637d9e67c31a0a8b61733e253f90b (patch)
treed3e22dc10b83e32c0821bedda46130694cd25751 /Rakefile
downloadtic-tac-toe-fa951e520b7637d9e67c31a0a8b61733e253f90b.tar.bz2
Initial commit. Get tests working.
Create a Rakefile to run tests and a sample test file.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..b642467
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,8 @@
+require 'rake'
+require 'rake/testtask'
+
+Rake::TestTask.new do |t|
+ t.pattern = 'test/**/*_test.rb'
+end
+
+task :default => :test