From 58219f1166a28d590ba38249307ea4361343f96c Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 29 Apr 2017 18:16:22 +0200 Subject: Rakefile: Add TestTask Make it easier for us to run our specs. --- Rakefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Rakefile b/Rakefile index c702cfc..4dd8368 100644 --- a/Rakefile +++ b/Rakefile @@ -1 +1,8 @@ require 'bundler/gem_tasks' +require 'rake/testtask' + +Rake::TestTask.new do |t| + t.libs << 'spec' + t.test_files = FileList['spec/**/*_spec.rb'] + t.verbose = true +end -- cgit v1.2.3