(QENG-2246) Add Default Rake Task

Add a default task that calls test.
This commit is contained in:
Colin 2015-07-06 13:10:24 -07:00
parent 1d483b1374
commit 7d77e76fc0

View file

@ -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]