From fa951e520b7637d9e67c31a0a8b61733e253f90b Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Tue, 17 Mar 2015 23:00:47 -0400 Subject: Initial commit. Get tests working. Create a Rakefile to run tests and a sample test file. --- Rakefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Rakefile (limited to 'Rakefile') 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 -- cgit v1.2.3