From 534cc91b0f9b976bbf607c5ea55a535a332fa812 Mon Sep 17 00:00:00 2001 From: Scott Schneider Date: Mon, 6 Jul 2015 15:40:02 -0700 Subject: [PATCH] Show test contexts and names --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 4b8fee4..b5cb435 100644 --- a/Rakefile +++ b/Rakefile @@ -2,7 +2,7 @@ require 'rspec/core/rake_task' desc 'Run rspec tests with coloring.' RSpec::Core::RakeTask.new(:test) do |t| - t.rspec_opts = %w[--color] + t.rspec_opts = %w[--color --format documentation] t.pattern = 'spec/' end @@ -12,4 +12,4 @@ RSpec::Core::RakeTask.new(:junit) do |t| t.pattern = 'spec/' end -task :default => [:test] \ No newline at end of file +task :default => [:test]