Rakefile in beaker-vagrant-0.6.6 vs Rakefile in beaker-vagrant-0.6.7
- old
+ new
@@ -4,17 +4,17 @@
namespace :spec do
desc "Run spec tests"
RSpec::Core::RakeTask.new(:run) do |t|
- t.rspec_opts = ['--color']
+ t.rspec_opts = ['--color', '--format documentation']
t.pattern = 'spec/'
end
desc "Run spec tests with coverage"
RSpec::Core::RakeTask.new(:coverage) do |t|
ENV['BEAKER_TEMPLATE_COVERAGE'] = 'y'
- t.rspec_opts = ['--color']
+ t.rspec_opts = ['--color', '--format documentation']
t.pattern = 'spec/'
end
end