From 7d77e76fc09790911eb47c229aa2c0445a07edf0 Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 6 Jul 2015 13:10:24 -0700 Subject: [PATCH] (QENG-2246) Add Default Rake Task Add a default task that calls test. --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 354e402..4b8fee4 100644 --- a/Rakefile +++ b/Rakefile @@ -11,3 +11,5 @@ RSpec::Core::RakeTask.new(:junit) do |t| t.rspec_opts = %w[-r yarjuf -f JUnit -o results.xml] t.pattern = 'spec/' end + +task :default => [:test] \ No newline at end of file