diff options
| author | Teddy Wing | 2015-03-17 23:00:47 -0400 |
|---|---|---|
| committer | Teddy Wing | 2015-03-17 23:00:47 -0400 |
| commit | fa951e520b7637d9e67c31a0a8b61733e253f90b (patch) | |
| tree | d3e22dc10b83e32c0821bedda46130694cd25751 /Rakefile | |
| download | tic-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-- | Rakefile | 8 |
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 |
