rspec-core 3.0.0.beta1 → 3.0.0.beta2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (145) hide show
  1. data.tar.gz.sig +0 -0
  2. data/Changelog.md +137 -0
  3. data/README.md +2 -2
  4. data/exe/rspec +2 -23
  5. data/features/README.md +1 -5
  6. data/features/command_line/README.md +7 -10
  7. data/features/command_line/exit_status.feature +1 -1
  8. data/features/command_line/format_option.feature +1 -1
  9. data/features/command_line/init.feature +40 -1
  10. data/features/command_line/line_number_option.feature +2 -2
  11. data/features/command_line/ruby.feature +5 -4
  12. data/features/configuration/enable_global_dsl.feature +54 -0
  13. data/features/example_groups/aliasing.feature +48 -0
  14. data/features/example_groups/basic_structure.feature +1 -1
  15. data/features/expectation_framework_integration/configure_expectation_framework.feature +1 -1
  16. data/features/filtering/if_and_unless.feature +0 -30
  17. data/features/formatters/custom_formatter.feature +32 -0
  18. data/features/formatters/regression_tests.feature +95 -0
  19. data/features/hooks/around_hooks.feature +1 -0
  20. data/features/hooks/before_and_after_hooks.feature +2 -2
  21. data/features/mock_framework_integration/use_flexmock.feature +11 -13
  22. data/features/mock_framework_integration/use_mocha.feature +11 -13
  23. data/features/mock_framework_integration/use_rr.feature +11 -13
  24. data/features/mock_framework_integration/use_rspec.feature +11 -13
  25. data/features/pending_and_skipped_examples/README.md +3 -0
  26. data/features/pending_and_skipped_examples/pending_examples.feature +118 -0
  27. data/features/pending_and_skipped_examples/skipped_examples.feature +106 -0
  28. data/features/step_definitions/additional_cli_steps.rb +34 -0
  29. data/features/subject/explicit_subject.feature +1 -1
  30. data/features/subject/one_liner_syntax.feature +71 -0
  31. data/lib/rspec/core.rb +6 -14
  32. data/lib/rspec/core/backtrace_formatter.rb +16 -4
  33. data/lib/rspec/core/command_line.rb +2 -3
  34. data/lib/rspec/core/configuration.rb +114 -125
  35. data/lib/rspec/core/configuration_options.rb +32 -18
  36. data/lib/rspec/core/dsl.rb +80 -18
  37. data/lib/rspec/core/example.rb +84 -33
  38. data/lib/rspec/core/example_group.rb +95 -43
  39. data/lib/rspec/core/filter_manager.rb +31 -40
  40. data/lib/rspec/core/formatters.rb +137 -0
  41. data/lib/rspec/core/formatters/base_formatter.rb +28 -41
  42. data/lib/rspec/core/formatters/base_text_formatter.rb +26 -37
  43. data/lib/rspec/core/formatters/deprecation_formatter.rb +48 -27
  44. data/lib/rspec/core/formatters/documentation_formatter.rb +27 -22
  45. data/lib/rspec/core/formatters/html_formatter.rb +48 -56
  46. data/lib/rspec/core/formatters/html_printer.rb +11 -18
  47. data/lib/rspec/core/formatters/json_formatter.rb +18 -22
  48. data/lib/rspec/core/formatters/legacy_formatter.rb +227 -0
  49. data/lib/rspec/core/formatters/progress_formatter.rb +7 -10
  50. data/lib/rspec/core/hooks.rb +250 -217
  51. data/lib/rspec/core/memoized_helpers.rb +43 -9
  52. data/lib/rspec/core/mocking_adapters/flexmock.rb +29 -0
  53. data/lib/rspec/core/{mocking/with_mocha.rb → mocking_adapters/mocha.rb} +19 -16
  54. data/lib/rspec/core/mocking_adapters/null.rb +12 -0
  55. data/lib/rspec/core/mocking_adapters/rr.rb +28 -0
  56. data/lib/rspec/core/mocking_adapters/rspec.rb +30 -0
  57. data/lib/rspec/core/notifications.rb +100 -0
  58. data/lib/rspec/core/option_parser.rb +11 -18
  59. data/lib/rspec/core/pending.rb +78 -47
  60. data/lib/rspec/core/project_initializer.rb +2 -49
  61. data/lib/rspec/core/project_initializer/dot_rspec +3 -0
  62. data/lib/rspec/core/project_initializer/spec_helper.rb +82 -0
  63. data/lib/rspec/core/rake_task.rb +5 -14
  64. data/lib/rspec/core/reporter.rb +24 -32
  65. data/lib/rspec/core/ruby_project.rb +1 -1
  66. data/lib/rspec/core/runner.rb +14 -4
  67. data/lib/rspec/core/shared_example_group.rb +40 -13
  68. data/lib/rspec/core/version.rb +1 -1
  69. data/spec/command_line/order_spec.rb +15 -15
  70. data/spec/rspec/core/backtrace_formatter_spec.rb +15 -1
  71. data/spec/rspec/core/command_line_spec.rb +18 -17
  72. data/spec/rspec/core/configuration_options_spec.rb +57 -34
  73. data/spec/rspec/core/configuration_spec.rb +162 -184
  74. data/spec/rspec/core/drb_command_line_spec.rb +5 -7
  75. data/spec/rspec/core/drb_options_spec.rb +2 -2
  76. data/spec/rspec/core/dsl_spec.rb +79 -15
  77. data/spec/rspec/core/example_group_spec.rb +253 -39
  78. data/spec/rspec/core/example_spec.rb +149 -33
  79. data/spec/rspec/core/filter_manager_spec.rb +9 -26
  80. data/spec/rspec/core/formatters/base_formatter_spec.rb +2 -5
  81. data/spec/rspec/core/formatters/base_text_formatter_spec.rb +42 -145
  82. data/spec/rspec/core/formatters/deprecation_formatter_spec.rb +64 -34
  83. data/spec/rspec/core/formatters/documentation_formatter_spec.rb +15 -28
  84. data/spec/rspec/core/formatters/helpers_spec.rb +2 -2
  85. data/spec/rspec/core/formatters/{html_formatted-1.8.7.html → html_formatted-2.1.0.html} +22 -44
  86. data/spec/rspec/core/formatters/{html_formatted-1.8.7-jruby.html → html_formatted.html} +30 -49
  87. data/spec/rspec/core/formatters/html_formatter_spec.rb +35 -19
  88. data/spec/rspec/core/formatters/json_formatter_spec.rb +42 -40
  89. data/spec/rspec/core/formatters/legacy_formatter_spec.rb +137 -0
  90. data/spec/rspec/core/formatters/progress_formatter_spec.rb +38 -25
  91. data/spec/rspec/core/formatters/snippet_extractor_spec.rb +1 -1
  92. data/spec/rspec/core/formatters_spec.rb +120 -0
  93. data/spec/rspec/core/hooks_filtering_spec.rb +1 -1
  94. data/spec/rspec/core/hooks_spec.rb +13 -2
  95. data/spec/rspec/core/memoized_helpers_spec.rb +17 -8
  96. data/spec/rspec/core/metadata_spec.rb +3 -3
  97. data/spec/rspec/core/option_parser_spec.rb +53 -46
  98. data/spec/rspec/core/ordering_spec.rb +4 -4
  99. data/spec/rspec/core/pending_example_spec.rb +23 -126
  100. data/spec/rspec/core/pending_spec.rb +8 -0
  101. data/spec/rspec/core/project_initializer_spec.rb +8 -41
  102. data/spec/rspec/core/rake_task_spec.rb +15 -4
  103. data/spec/rspec/core/random_spec.rb +1 -1
  104. data/spec/rspec/core/reporter_spec.rb +50 -37
  105. data/spec/rspec/core/resources/formatter_specs.rb +9 -11
  106. data/spec/rspec/core/rspec_matchers_spec.rb +1 -1
  107. data/spec/rspec/core/ruby_project_spec.rb +3 -3
  108. data/spec/rspec/core/runner_spec.rb +65 -23
  109. data/spec/rspec/core/shared_context_spec.rb +4 -4
  110. data/spec/rspec/core/shared_example_group/collection_spec.rb +1 -1
  111. data/spec/rspec/core/shared_example_group_spec.rb +20 -11
  112. data/spec/rspec/core/warnings_spec.rb +1 -1
  113. data/spec/rspec/core/world_spec.rb +10 -10
  114. data/spec/rspec/core_spec.rb +2 -2
  115. data/spec/spec_helper.rb +12 -24
  116. data/spec/support/config_options_helper.rb +1 -3
  117. data/spec/support/formatter_support.rb +83 -0
  118. data/spec/support/isolate_load_path_mutation.rb +1 -2
  119. data/spec/support/isolated_directory.rb +1 -1
  120. data/spec/support/isolated_home_directory.rb +1 -1
  121. data/spec/support/legacy_formatter_using_sub_classing_example.rb +87 -0
  122. data/spec/support/matchers.rb +20 -0
  123. data/spec/support/mathn_integration_support.rb +2 -2
  124. data/spec/support/old_style_formatter_example.rb +69 -0
  125. data/spec/support/shared_example_groups.rb +1 -1
  126. data/spec/support/spec_files.rb +3 -3
  127. metadata +192 -69
  128. metadata.gz.sig +3 -1
  129. checksums.yaml +0 -15
  130. checksums.yaml.gz.sig +0 -2
  131. data/features/configuration/show_failures_in_pending_blocks.feature +0 -61
  132. data/features/pending/pending_examples.feature +0 -229
  133. data/features/subject/implicit_receiver.feature +0 -29
  134. data/lib/rspec/core/mocking/with_absolutely_nothing.rb +0 -11
  135. data/lib/rspec/core/mocking/with_flexmock.rb +0 -27
  136. data/lib/rspec/core/mocking/with_rr.rb +0 -27
  137. data/lib/rspec/core/mocking/with_rspec.rb +0 -27
  138. data/spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html +0 -477
  139. data/spec/rspec/core/formatters/html_formatted-1.9.2.html +0 -425
  140. data/spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html +0 -416
  141. data/spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html +0 -477
  142. data/spec/rspec/core/formatters/html_formatted-1.9.3.html +0 -419
  143. data/spec/rspec/core/formatters/html_formatted-2.0.0.html +0 -425
  144. data/spec/support/in_sub_process.rb +0 -37
  145. data/spec/support/sandboxed_mock_space.rb +0 -100
@@ -4,9 +4,7 @@ module ConfigOptionsHelper
4
4
  around(:each) { |e| without_env_vars('SPEC_OPTS', &e) }
5
5
 
6
6
  def config_options_object(*args)
7
- coo = RSpec::Core::ConfigurationOptions.new(args)
8
- coo.parse_options
9
- coo
7
+ RSpec::Core::ConfigurationOptions.new(args)
10
8
  end
11
9
 
12
10
  def parse_options(*args)
@@ -0,0 +1,83 @@
1
+ module FormatterSupport
2
+
3
+ def send_notification type, notification
4
+ reporter.notify type, notification
5
+ end
6
+
7
+ def reporter
8
+ @reporter ||= setup_reporter
9
+ end
10
+
11
+ def setup_reporter(*streams)
12
+ config.add_formatter described_class, *streams
13
+ @formatter = config.formatters.first
14
+ @reporter = config.reporter
15
+ end
16
+
17
+ def output
18
+ @output ||= StringIO.new
19
+ end
20
+
21
+ def config
22
+ @configuration ||=
23
+ begin
24
+ config = RSpec::Core::Configuration.new
25
+ config.output_stream = output
26
+ config
27
+ end
28
+ end
29
+
30
+ def configure
31
+ yield config
32
+ end
33
+
34
+ def formatter
35
+ @formatter ||=
36
+ begin
37
+ setup_reporter
38
+ @formatter
39
+ end
40
+ end
41
+
42
+ def example
43
+ instance_double("RSpec::Core::Example",
44
+ :description => "Example",
45
+ :full_description => "Example",
46
+ :execution_result => { :exception => Exception.new },
47
+ :metadata => {}
48
+ )
49
+ end
50
+
51
+ def group
52
+ class_double "RSpec::Core::ExampleGroup", :description => "Group"
53
+ end
54
+
55
+ def count_notification(count)
56
+ ::RSpec::Core::Notifications::CountNotification.new count
57
+ end
58
+
59
+ def example_notification(specific_example = example)
60
+ ::RSpec::Core::Notifications::ExampleNotification.new specific_example
61
+ end
62
+
63
+ def group_notification
64
+ ::RSpec::Core::Notifications::GroupNotification.new group
65
+ end
66
+
67
+ def message_notification(message)
68
+ ::RSpec::Core::Notifications::MessageNotification.new message
69
+ end
70
+
71
+ def null_notification
72
+ ::RSpec::Core::Notifications::NullNotification
73
+ end
74
+
75
+ def seed_notification(seed, used = true)
76
+ ::RSpec::Core::Notifications::SeedNotification.new seed, used
77
+ end
78
+
79
+ def summary_notification(duration, examples, failed, pending)
80
+ ::RSpec::Core::Notifications::SummaryNotification.new duration, examples, failed, pending
81
+ end
82
+
83
+ end
@@ -1,6 +1,5 @@
1
- shared_context "isolate load path mutation" do
1
+ RSpec.shared_context "isolate load path mutation" do
2
2
  original_load_path = nil
3
3
  before { original_load_path = $LOAD_PATH.dup }
4
4
  after { $LOAD_PATH.replace(original_load_path) }
5
5
  end
6
-
@@ -1,7 +1,7 @@
1
1
  require 'tmpdir'
2
2
  require 'fileutils'
3
3
 
4
- shared_context "isolated directory", :isolated_directory => true do
4
+ RSpec.shared_context "isolated directory", :isolated_directory => true do
5
5
  around do |ex|
6
6
  Dir.mktmpdir do |tmp_dir|
7
7
  Dir.chdir(tmp_dir, &ex)
@@ -1,7 +1,7 @@
1
1
  require 'tmpdir'
2
2
  require 'fileutils'
3
3
 
4
- shared_context "isolated home directory", :isolated_home => true do
4
+ RSpec.shared_context "isolated home directory", :isolated_home => true do
5
5
  around do |ex|
6
6
  Dir.mktmpdir do |tmp_dir|
7
7
  original_home = ENV['HOME']
@@ -0,0 +1,87 @@
1
+ require 'rspec/core/formatters/base_text_formatter'
2
+
3
+ class LegacyFormatterUsingSubClassing < RSpec::Core::Formatters::BaseTextFormatter
4
+
5
+ def initialize(output)
6
+ super nil
7
+ @output = output
8
+ end
9
+
10
+ def start(example_count)
11
+ super
12
+ @output.puts "Started #{example_count.to_s} examples"
13
+ end
14
+
15
+ def example_group_started(group)
16
+ super
17
+ @output.puts "Started #{group.description}"
18
+ end
19
+
20
+ def example_group_finished(group)
21
+ super
22
+ @output.puts "Finished #{group.description}"
23
+ end
24
+
25
+ def example_started(example)
26
+ super
27
+ @output.puts "Started #{example.full_description}"
28
+ end
29
+
30
+ def stop
31
+ super
32
+ @output.puts "Stopped"
33
+ end
34
+
35
+ def message(message)
36
+ super
37
+ @output.puts message
38
+ end
39
+
40
+ def dump_failures
41
+ super
42
+ @output.puts "Failures:"
43
+ end
44
+
45
+ def dump_summary(duration, example_count, failure_count, pending_count)
46
+ super
47
+ @output.puts "\nFinished in #{duration}\n" +
48
+ "#{failure_count}/#{example_count} failed.\n" +
49
+ "#{pending_count} pending."
50
+ end
51
+
52
+ def dump_pending
53
+ super
54
+ @output.puts "Pending:"
55
+ end
56
+
57
+ def seed(number)
58
+ super
59
+ @output.puts "Randomized with seed #{number}"
60
+ end
61
+
62
+ def close
63
+ super
64
+ @output.close
65
+ end
66
+
67
+ def example_passed(example)
68
+ super
69
+ @output.print '.'
70
+ end
71
+
72
+ def example_pending(example)
73
+ super
74
+ @output.print 'P'
75
+ end
76
+
77
+ def example_failed(example)
78
+ super
79
+ @output.print 'F'
80
+ end
81
+
82
+ def start_dump
83
+ super
84
+ @output.puts "Dumping!"
85
+ end
86
+
87
+ end
@@ -63,3 +63,23 @@ RSpec::Matchers.module_eval do
63
63
  alias_method :have_failed_with, :fail_with
64
64
  alias_method :have_passed, :pass
65
65
  end
66
+
67
+ RSpec::Matchers.define :be_pending_with do |message|
68
+ match do |example|
69
+ example.pending? && example.metadata[:execution_result][:pending_message] == message
70
+ end
71
+
72
+ failure_message_for_should do |example|
73
+ "expected: example pending with #{message.inspect}\n got: #{example.metadata[:execution_result][:pending_message].inspect}"
74
+ end
75
+ end
76
+
77
+ RSpec::Matchers.define :be_skipped_with do |message|
78
+ match do |example|
79
+ example.skipped? && example.metadata[:execution_result][:pending_message] == message
80
+ end
81
+
82
+ failure_message_for_should do |example|
83
+ "expected: example skipped with #{message.inspect}\n got: #{example.metadata[:execution_result][:pending_message].inspect}"
84
+ end
85
+ end
@@ -1,7 +1,7 @@
1
- require 'support/in_sub_process'
1
+ require 'rspec/support/spec/in_sub_process'
2
2
 
3
3
  module MathnIntegrationSupport
4
- include InSubProcess
4
+ include RSpec::Support::InSubProcess
5
5
 
6
6
  def with_mathn_loaded
7
7
  in_sub_process do
@@ -0,0 +1,69 @@
1
+ class OldStyleFormatterExample
2
+
3
+ def initialize(output)
4
+ @output = output
5
+ end
6
+
7
+ def start(example_count)
8
+ @output.puts "Started #{example_count.to_s} examples"
9
+ end
10
+
11
+ def example_group_started(group)
12
+ @output.puts "Started #{group.description}"
13
+ end
14
+
15
+ def example_group_finished(group)
16
+ @output.puts "Finished #{group.description}"
17
+ end
18
+
19
+ def example_started(example)
20
+ @output.puts "Started #{example.full_description}"
21
+ end
22
+
23
+ def stop
24
+ @output.puts "Stopped"
25
+ end
26
+
27
+ def message(message)
28
+ @output.puts message
29
+ end
30
+
31
+ def dump_failures
32
+ @output.puts "Failures:"
33
+ end
34
+
35
+ def dump_summary(duration, example_count, failure_count, pending_count)
36
+ @output.puts "\nFinished in #{duration}\n" +
37
+ "#{failure_count}/#{example_count} failed.\n" +
38
+ "#{pending_count} pending."
39
+ end
40
+
41
+ def dump_pending
42
+ @output.puts "Pending:"
43
+ end
44
+
45
+ def seed(number)
46
+ @output.puts "Randomized with seed #{number}"
47
+ end
48
+
49
+ def close
50
+ @output.close
51
+ end
52
+
53
+ def example_passed(example)
54
+ @output.print '.'
55
+ end
56
+
57
+ def example_pending(example)
58
+ @output.print 'P'
59
+ end
60
+
61
+ def example_failed(example)
62
+ @output.print 'F'
63
+ end
64
+
65
+ def start_dump
66
+ @output.puts "Dumping!"
67
+ end
68
+
69
+ end
@@ -1,4 +1,4 @@
1
- shared_examples_for "metadata hash builder" do
1
+ RSpec.shared_examples_for "metadata hash builder" do
2
2
  let(:hash) { metadata_hash(:foo, :bar, :bazz => 23) }
3
3
 
4
4
  it 'treats symbols as metadata keys with a true value' do
@@ -1,4 +1,4 @@
1
- shared_context "spec files" do
1
+ RSpec.shared_context "spec files" do
2
2
  def failing_spec_filename
3
3
  @failing_spec_filename ||= File.expand_path(File.dirname(__FILE__)) + "/_failing_spec.rb"
4
4
  end
@@ -10,7 +10,7 @@ shared_context "spec files" do
10
10
  def create_passing_spec_file
11
11
  File.open(passing_spec_filename, 'w') do |f|
12
12
  f.write %q{
13
- describe "passing spec" do
13
+ RSpec.describe "passing spec" do
14
14
  it "passes" do
15
15
  expect(1).to eq(1)
16
16
  end
@@ -22,7 +22,7 @@ shared_context "spec files" do
22
22
  def create_failing_spec_file
23
23
  File.open(failing_spec_filename, 'w') do |f|
24
24
  f.write %q{
25
- describe "failing spec" do
25
+ RSpec.describe "failing spec" do
26
26
  it "fails" do
27
27
  expect(1).to eq(2)
28
28
  end
metadata CHANGED
@@ -1,7 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.beta1
4
+ version: 3.0.0.beta2
5
+ prerelease: 6
5
6
  platform: ruby
6
7
  authors:
7
8
  - Steven Baker
@@ -11,55 +12,73 @@ authors:
11
12
  autorequire:
12
13
  bindir: exe
13
14
  cert_chain:
14
- - !binary |-
15
- LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURqakNDQW5hZ0F3SUJB
16
- Z0lCQVRBTkJna3Foa2lHOXcwQkFRVUZBREJHTVJJd0VBWURWUVFEREFseWMz
17
- QmwKWXkxa1pYWXhHekFaQmdvSmtpYUprL0lzWkFFWkZndG5iMjluYkdWbmIz
18
- VndjekVUTUJFR0NnbVNKb21UOGl4awpBUmtXQTJOdmJUQWVGdzB4TXpFeE1E
19
- Y3hPVFF5TlRsYUZ3MHhOREV4TURjeE9UUXlOVGxhTUVZeEVqQVFCZ05WCkJB
20
- TU1DWEp6Y0dWakxXUmxkakViTUJrR0NnbVNKb21UOGl4a0FSa1dDMmR2YjJk
21
- c1pXZHZkWEJ6TVJNd0VRWUsKQ1pJbWlaUHlMR1FCR1JZRFkyOXRNSUlCSWpB
22
- TkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQQpuaENlWm91
23
- RExYV081NW5vK0VkWk5DdGpYamZKUTFYOVRiUGN2QkREMjlPeXBJVWNlMmgv
24
- VmRLWEIyZ0k3WkhzCkY1TmtQZ2dzbFRFckdGbVdBdElpdXI3dTk0M1JWcUhP
25
- c3lvSXN5MDY1RjlmQ3RyeWtrQSsyMmVsdlREaGE0SXoKUlVDdnVoUTNrbGF0
26
- WWs0akYrY0d0MWpOT05OVmRMT2l5MGJNeW52Y003aG9WUTJBb213R3MrY0VP
27
- V1EvNGRrRApKY05WM3FmekY1UUJjVEQyMzcyWE5NNTNiMjVuWVZRU1gyS0g1
28
- RkY3QmhsS3lvdjMzYk9tMmdBOU0rbVdJdWpXCnFna3l4VmxmcmxFK1pCZ1Yz
29
- d1huMUNvamcxTHBUcTM1eU9Bcmd3aW95cnd3bFpaSlI5am9OOXMvbkRrbGZy
30
- NUEKK2R5RVRqRmM2Y21FUFdacnQyY0pCUUlEQVFBQm80R0dNSUdETUFrR0Ex
31
- VWRFd1FDTUFBd0N3WURWUjBQQkFRRApBZ1N3TUIwR0ExVWREZ1FXQkJTVytX
32
- RDdobjFzd0oxQTdpOHRidUZldU5DSkNqQWtCZ05WSFJFRUhUQWJnUmx5CmMz
33
- QmxZeTFrWlhaQVoyOXZaMnhsWjI5MWNITXVZMjl0TUNRR0ExVWRFZ1FkTUJ1
34
- QkdYSnpjR1ZqTFdSbGRrQm4KYjI5bmJHVm5iM1Z3Y3k1amIyMHdEUVlKS29a
35
- SWh2Y05BUUVGQlFBRGdnRUJBSDI3akFaOHNEN3ZuWHVwajZZKwpCYUJkZkh0
36
- Q2tGYXNsTEowYUt1TURJVlh3WXVLZnFvVzE1Y1pQRExtU0lFQnVRRk0zbHc2
37
- ZC9oRUVMNFVvMmpaCkZ2dG1INU94aWZQRHpGeVV0Q0w0eXA2cWdOZS9YZjZz
38
- RHNSZzZGbUtjcGdxQ3dOT21zVmlhZjBMUFNVSC9HWVEKM1Rlb3o4UUNhRGJE
39
- N0FLc2ZmVDdlRHJuYkhuS3dlTzFYZGVtUkpDOTh1L3lZeG5Hek1TV0tFc24w
40
- OWV0QmxaOQo3SDY3azVaM3VmNmNmTFpnVG9XTDZ6U2h6WlkzTnVuNXI3M1lz
41
- TmYyL1FaT2U0VVplNHZmR3ZuNmJhdzUzeXM5CjF5SEMxQWNTWXB2aTJkQWJP
42
- aUhUNWlRRitrcm00d3NlOEtjdFhnVE5uak1zSEVvR0t1bEpTMi9zWmw5MGpj
43
- Q3oKbXVBPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
44
- date: 2013-11-08 00:00:00.000000000 Z
15
+ - ! '-----BEGIN CERTIFICATE-----
16
+
17
+ MIIDjjCCAnagAwIBAgIBATANBgkqhkiG9w0BAQUFADBGMRIwEAYDVQQDDAlyc3Bl
18
+
19
+ Yy1kZXYxGzAZBgoJkiaJk/IsZAEZFgtnb29nbGVnb3VwczETMBEGCgmSJomT8ixk
20
+
21
+ ARkWA2NvbTAeFw0xMzExMDcxOTQyNTlaFw0xNDExMDcxOTQyNTlaMEYxEjAQBgNV
22
+
23
+ BAMMCXJzcGVjLWRldjEbMBkGCgmSJomT8ixkARkWC2dvb2dsZWdvdXBzMRMwEQYK
24
+
25
+ CZImiZPyLGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
26
+
27
+ nhCeZouDLXWO55no+EdZNCtjXjfJQ1X9TbPcvBDD29OypIUce2h/VdKXB2gI7ZHs
28
+
29
+ F5NkPggslTErGFmWAtIiur7u943RVqHOsyoIsy065F9fCtrykkA+22elvTDha4Iz
30
+
31
+ RUCvuhQ3klatYk4jF+cGt1jNONNVdLOiy0bMynvcM7hoVQ2AomwGs+cEOWQ/4dkD
32
+
33
+ JcNV3qfzF5QBcTD2372XNM53b25nYVQSX2KH5FF7BhlKyov33bOm2gA9M+mWIujW
34
+
35
+ qgkyxVlfrlE+ZBgV3wXn1Cojg1LpTq35yOArgwioyrwwlZZJR9joN9s/nDklfr5A
36
+
37
+ +dyETjFc6cmEPWZrt2cJBQIDAQABo4GGMIGDMAkGA1UdEwQCMAAwCwYDVR0PBAQD
38
+
39
+ AgSwMB0GA1UdDgQWBBSW+WD7hn1swJ1A7i8tbuFeuNCJCjAkBgNVHREEHTAbgRly
40
+
41
+ c3BlYy1kZXZAZ29vZ2xlZ291cHMuY29tMCQGA1UdEgQdMBuBGXJzcGVjLWRldkBn
42
+
43
+ b29nbGVnb3Vwcy5jb20wDQYJKoZIhvcNAQEFBQADggEBAH27jAZ8sD7vnXupj6Y+
44
+
45
+ BaBdfHtCkFaslLJ0aKuMDIVXwYuKfqoW15cZPDLmSIEBuQFM3lw6d/hEEL4Uo2jZ
46
+
47
+ FvtmH5OxifPDzFyUtCL4yp6qgNe/Xf6sDsRg6FmKcpgqCwNOmsViaf0LPSUH/GYQ
48
+
49
+ 3Teoz8QCaDbD7AKsffT7eDrnbHnKweO1XdemRJC98u/yYxnGzMSWKEsn09etBlZ9
50
+
51
+ 7H67k5Z3uf6cfLZgToWL6zShzZY3Nun5r73YsNf2/QZOe4UZe4vfGvn6baw53ys9
52
+
53
+ 1yHC1AcSYpvi2dAbOiHT5iQF+krm4wse8KctXgTNnjMsHEoGKulJS2/sZl90jcCz
54
+
55
+ muA=
56
+
57
+ -----END CERTIFICATE-----
58
+
59
+ '
60
+ date: 2014-02-18 00:00:00.000000000 Z
45
61
  dependencies:
46
62
  - !ruby/object:Gem::Dependency
47
63
  name: rspec-support
48
64
  requirement: !ruby/object:Gem::Requirement
65
+ none: false
49
66
  requirements:
50
67
  - - '='
51
68
  - !ruby/object:Gem::Version
52
- version: 3.0.0.beta1
69
+ version: 3.0.0.beta2
53
70
  type: :runtime
54
71
  prerelease: false
55
72
  version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
56
74
  requirements:
57
75
  - - '='
58
76
  - !ruby/object:Gem::Version
59
- version: 3.0.0.beta1
77
+ version: 3.0.0.beta2
60
78
  - !ruby/object:Gem::Dependency
61
79
  name: rake
62
80
  requirement: !ruby/object:Gem::Requirement
81
+ none: false
63
82
  requirements:
64
83
  - - ~>
65
84
  - !ruby/object:Gem::Version
@@ -67,6 +86,7 @@ dependencies:
67
86
  type: :development
68
87
  prerelease: false
69
88
  version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
70
90
  requirements:
71
91
  - - ~>
72
92
  - !ruby/object:Gem::Version
@@ -74,6 +94,7 @@ dependencies:
74
94
  - !ruby/object:Gem::Dependency
75
95
  name: cucumber
76
96
  requirement: !ruby/object:Gem::Requirement
97
+ none: false
77
98
  requirements:
78
99
  - - ~>
79
100
  - !ruby/object:Gem::Version
@@ -81,6 +102,7 @@ dependencies:
81
102
  type: :development
82
103
  prerelease: false
83
104
  version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
84
106
  requirements:
85
107
  - - ~>
86
108
  - !ruby/object:Gem::Version
@@ -88,6 +110,7 @@ dependencies:
88
110
  - !ruby/object:Gem::Dependency
89
111
  name: aruba
90
112
  requirement: !ruby/object:Gem::Requirement
113
+ none: false
91
114
  requirements:
92
115
  - - ~>
93
116
  - !ruby/object:Gem::Version
@@ -95,6 +118,7 @@ dependencies:
95
118
  type: :development
96
119
  prerelease: false
97
120
  version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
98
122
  requirements:
99
123
  - - ~>
100
124
  - !ruby/object:Gem::Version
@@ -102,6 +126,7 @@ dependencies:
102
126
  - !ruby/object:Gem::Dependency
103
127
  name: nokogiri
104
128
  requirement: !ruby/object:Gem::Requirement
129
+ none: false
105
130
  requirements:
106
131
  - - '='
107
132
  - !ruby/object:Gem::Version
@@ -109,6 +134,7 @@ dependencies:
109
134
  type: :development
110
135
  prerelease: false
111
136
  version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
112
138
  requirements:
113
139
  - - '='
114
140
  - !ruby/object:Gem::Version
@@ -116,6 +142,7 @@ dependencies:
116
142
  - !ruby/object:Gem::Dependency
117
143
  name: coderay
118
144
  requirement: !ruby/object:Gem::Requirement
145
+ none: false
119
146
  requirements:
120
147
  - - ~>
121
148
  - !ruby/object:Gem::Version
@@ -123,6 +150,7 @@ dependencies:
123
150
  type: :development
124
151
  prerelease: false
125
152
  version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
126
154
  requirements:
127
155
  - - ~>
128
156
  - !ruby/object:Gem::Version
@@ -130,6 +158,7 @@ dependencies:
130
158
  - !ruby/object:Gem::Dependency
131
159
  name: mocha
132
160
  requirement: !ruby/object:Gem::Requirement
161
+ none: false
133
162
  requirements:
134
163
  - - ~>
135
164
  - !ruby/object:Gem::Version
@@ -137,6 +166,7 @@ dependencies:
137
166
  type: :development
138
167
  prerelease: false
139
168
  version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
140
170
  requirements:
141
171
  - - ~>
142
172
  - !ruby/object:Gem::Version
@@ -144,6 +174,7 @@ dependencies:
144
174
  - !ruby/object:Gem::Dependency
145
175
  name: rr
146
176
  requirement: !ruby/object:Gem::Requirement
177
+ none: false
147
178
  requirements:
148
179
  - - ~>
149
180
  - !ruby/object:Gem::Version
@@ -151,6 +182,7 @@ dependencies:
151
182
  type: :development
152
183
  prerelease: false
153
184
  version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
154
186
  requirements:
155
187
  - - ~>
156
188
  - !ruby/object:Gem::Version
@@ -158,6 +190,7 @@ dependencies:
158
190
  - !ruby/object:Gem::Dependency
159
191
  name: flexmock
160
192
  requirement: !ruby/object:Gem::Requirement
193
+ none: false
161
194
  requirements:
162
195
  - - ~>
163
196
  - !ruby/object:Gem::Version
@@ -165,10 +198,91 @@ dependencies:
165
198
  type: :development
166
199
  prerelease: false
167
200
  version_requirements: !ruby/object:Gem::Requirement
201
+ none: false
168
202
  requirements:
169
203
  - - ~>
170
204
  - !ruby/object:Gem::Version
171
205
  version: 0.9.0
206
+ - !ruby/object:Gem::Dependency
207
+ name: fuubar
208
+ requirement: !ruby/object:Gem::Requirement
209
+ none: false
210
+ requirements:
211
+ - - '='
212
+ - !ruby/object:Gem::Version
213
+ version: 1.3.2
214
+ type: :development
215
+ prerelease: false
216
+ version_requirements: !ruby/object:Gem::Requirement
217
+ none: false
218
+ requirements:
219
+ - - '='
220
+ - !ruby/object:Gem::Version
221
+ version: 1.3.2
222
+ - !ruby/object:Gem::Dependency
223
+ name: nyan-cat-formatter
224
+ requirement: !ruby/object:Gem::Requirement
225
+ none: false
226
+ requirements:
227
+ - - '='
228
+ - !ruby/object:Gem::Version
229
+ version: 0.5.2
230
+ type: :development
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ none: false
234
+ requirements:
235
+ - - '='
236
+ - !ruby/object:Gem::Version
237
+ version: 0.5.2
238
+ - !ruby/object:Gem::Dependency
239
+ name: rspec-instafail
240
+ requirement: !ruby/object:Gem::Requirement
241
+ none: false
242
+ requirements:
243
+ - - '='
244
+ - !ruby/object:Gem::Version
245
+ version: 0.2.4
246
+ type: :development
247
+ prerelease: false
248
+ version_requirements: !ruby/object:Gem::Requirement
249
+ none: false
250
+ requirements:
251
+ - - '='
252
+ - !ruby/object:Gem::Version
253
+ version: 0.2.4
254
+ - !ruby/object:Gem::Dependency
255
+ name: rspec_spinner
256
+ requirement: !ruby/object:Gem::Requirement
257
+ none: false
258
+ requirements:
259
+ - - '='
260
+ - !ruby/object:Gem::Version
261
+ version: 2.0.0
262
+ type: :development
263
+ prerelease: false
264
+ version_requirements: !ruby/object:Gem::Requirement
265
+ none: false
266
+ requirements:
267
+ - - '='
268
+ - !ruby/object:Gem::Version
269
+ version: 2.0.0
270
+ - !ruby/object:Gem::Dependency
271
+ name: rspec-extra-formatters
272
+ requirement: !ruby/object:Gem::Requirement
273
+ none: false
274
+ requirements:
275
+ - - '='
276
+ - !ruby/object:Gem::Version
277
+ version: 1.0.0
278
+ type: :development
279
+ prerelease: false
280
+ version_requirements: !ruby/object:Gem::Requirement
281
+ none: false
282
+ requirements:
283
+ - - '='
284
+ - !ruby/object:Gem::Version
285
+ version: 1.0.0
172
286
  description: BDD for Ruby. RSpec runner and example groups.
173
287
  email: rspec@googlegroups.com
174
288
  executables:
@@ -199,20 +313,24 @@ files:
199
313
  - lib/rspec/core/formatters/html_formatter.rb
200
314
  - lib/rspec/core/formatters/html_printer.rb
201
315
  - lib/rspec/core/formatters/json_formatter.rb
316
+ - lib/rspec/core/formatters/legacy_formatter.rb
202
317
  - lib/rspec/core/formatters/progress_formatter.rb
203
318
  - lib/rspec/core/formatters/snippet_extractor.rb
204
319
  - lib/rspec/core/hooks.rb
205
320
  - lib/rspec/core/memoized_helpers.rb
206
321
  - lib/rspec/core/metadata.rb
207
- - lib/rspec/core/mocking/with_absolutely_nothing.rb
208
- - lib/rspec/core/mocking/with_flexmock.rb
209
- - lib/rspec/core/mocking/with_mocha.rb
210
- - lib/rspec/core/mocking/with_rr.rb
211
- - lib/rspec/core/mocking/with_rspec.rb
322
+ - lib/rspec/core/mocking_adapters/flexmock.rb
323
+ - lib/rspec/core/mocking_adapters/mocha.rb
324
+ - lib/rspec/core/mocking_adapters/null.rb
325
+ - lib/rspec/core/mocking_adapters/rr.rb
326
+ - lib/rspec/core/mocking_adapters/rspec.rb
327
+ - lib/rspec/core/notifications.rb
212
328
  - lib/rspec/core/option_parser.rb
213
329
  - lib/rspec/core/ordering.rb
214
330
  - lib/rspec/core/pending.rb
215
331
  - lib/rspec/core/project_initializer.rb
332
+ - lib/rspec/core/project_initializer/dot_rspec
333
+ - lib/rspec/core/project_initializer/spec_helper.rb
216
334
  - lib/rspec/core/rake_task.rb
217
335
  - lib/rspec/core/reporter.rb
218
336
  - lib/rspec/core/ruby_project.rb
@@ -252,6 +370,7 @@ files:
252
370
  - features/configuration/custom_settings.feature
253
371
  - features/configuration/default_path.feature
254
372
  - features/configuration/deprecation_stream.feature
373
+ - features/configuration/enable_global_dsl.feature
255
374
  - features/configuration/fail_fast.feature
256
375
  - features/configuration/failure_exit_code.feature
257
376
  - features/configuration/order_and_seed.feature
@@ -261,7 +380,7 @@ files:
261
380
  - features/configuration/profile.feature
262
381
  - features/configuration/read_options_from_file.feature
263
382
  - features/configuration/run_all_when_everything_filtered.feature
264
- - features/configuration/show_failures_in_pending_blocks.feature
383
+ - features/example_groups/aliasing.feature
265
384
  - features/example_groups/basic_structure.feature
266
385
  - features/example_groups/shared_context.feature
267
386
  - features/example_groups/shared_examples.feature
@@ -272,6 +391,7 @@ files:
272
391
  - features/formatters/configurable_colors.feature
273
392
  - features/formatters/custom_formatter.feature
274
393
  - features/formatters/json_formatter.feature
394
+ - features/formatters/regression_tests.feature
275
395
  - features/formatters/text_formatter.feature
276
396
  - features/helper_methods/arbitrary_methods.feature
277
397
  - features/helper_methods/let.feature
@@ -287,12 +407,14 @@ files:
287
407
  - features/mock_framework_integration/use_mocha.feature
288
408
  - features/mock_framework_integration/use_rr.feature
289
409
  - features/mock_framework_integration/use_rspec.feature
290
- - features/pending/pending_examples.feature
410
+ - features/pending_and_skipped_examples/README.md
411
+ - features/pending_and_skipped_examples/pending_examples.feature
412
+ - features/pending_and_skipped_examples/skipped_examples.feature
291
413
  - features/spec_files/arbitrary_file_suffix.feature
292
414
  - features/step_definitions/additional_cli_steps.rb
293
415
  - features/subject/explicit_subject.feature
294
- - features/subject/implicit_receiver.feature
295
416
  - features/subject/implicit_subject.feature
417
+ - features/subject/one_liner_syntax.feature
296
418
  - features/support/env.rb
297
419
  - features/support/require_expect_syntax_in_aruba_specs.rb
298
420
  - features/support/rubinius.rb
@@ -313,18 +435,14 @@ files:
313
435
  - spec/rspec/core/formatters/deprecation_formatter_spec.rb
314
436
  - spec/rspec/core/formatters/documentation_formatter_spec.rb
315
437
  - spec/rspec/core/formatters/helpers_spec.rb
316
- - spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html
317
- - spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html
318
- - spec/rspec/core/formatters/html_formatted-1.8.7.html
319
- - spec/rspec/core/formatters/html_formatted-1.9.2.html
320
- - spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html
321
- - spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html
322
- - spec/rspec/core/formatters/html_formatted-1.9.3.html
323
- - spec/rspec/core/formatters/html_formatted-2.0.0.html
438
+ - spec/rspec/core/formatters/html_formatted-2.1.0.html
439
+ - spec/rspec/core/formatters/html_formatted.html
324
440
  - spec/rspec/core/formatters/html_formatter_spec.rb
325
441
  - spec/rspec/core/formatters/json_formatter_spec.rb
442
+ - spec/rspec/core/formatters/legacy_formatter_spec.rb
326
443
  - spec/rspec/core/formatters/progress_formatter_spec.rb
327
444
  - spec/rspec/core/formatters/snippet_extractor_spec.rb
445
+ - spec/rspec/core/formatters_spec.rb
328
446
  - spec/rspec/core/hooks_filtering_spec.rb
329
447
  - spec/rspec/core/hooks_spec.rb
330
448
  - spec/rspec/core/memoized_helpers_spec.rb
@@ -332,6 +450,7 @@ files:
332
450
  - spec/rspec/core/option_parser_spec.rb
333
451
  - spec/rspec/core/ordering_spec.rb
334
452
  - spec/rspec/core/pending_example_spec.rb
453
+ - spec/rspec/core/pending_spec.rb
335
454
  - spec/rspec/core/project_initializer_spec.rb
336
455
  - spec/rspec/core/rake_task_spec.rb
337
456
  - spec/rspec/core/random_spec.rb
@@ -353,14 +472,15 @@ files:
353
472
  - spec/rspec/core_spec.rb
354
473
  - spec/spec_helper.rb
355
474
  - spec/support/config_options_helper.rb
475
+ - spec/support/formatter_support.rb
356
476
  - spec/support/helper_methods.rb
357
- - spec/support/in_sub_process.rb
358
477
  - spec/support/isolate_load_path_mutation.rb
359
478
  - spec/support/isolated_directory.rb
360
479
  - spec/support/isolated_home_directory.rb
480
+ - spec/support/legacy_formatter_using_sub_classing_example.rb
361
481
  - spec/support/matchers.rb
362
482
  - spec/support/mathn_integration_support.rb
363
- - spec/support/sandboxed_mock_space.rb
483
+ - spec/support/old_style_formatter_example.rb
364
484
  - spec/support/shared_example_groups.rb
365
485
  - spec/support/spec_files.rb
366
486
  - spec/support/stderr_splitter.rb
@@ -368,28 +488,29 @@ files:
368
488
  homepage: http://github.com/rspec/rspec-core
369
489
  licenses:
370
490
  - MIT
371
- metadata: {}
372
491
  post_install_message:
373
492
  rdoc_options:
374
493
  - --charset=UTF-8
375
494
  require_paths:
376
495
  - lib
377
496
  required_ruby_version: !ruby/object:Gem::Requirement
497
+ none: false
378
498
  requirements:
379
499
  - - ! '>='
380
500
  - !ruby/object:Gem::Version
381
501
  version: 1.8.7
382
502
  required_rubygems_version: !ruby/object:Gem::Requirement
503
+ none: false
383
504
  requirements:
384
505
  - - ! '>'
385
506
  - !ruby/object:Gem::Version
386
507
  version: 1.3.1
387
508
  requirements: []
388
509
  rubyforge_project: rspec
389
- rubygems_version: 2.0.7
510
+ rubygems_version: 1.8.23
390
511
  signing_key:
391
- specification_version: 4
392
- summary: rspec-core-3.0.0.beta1
512
+ specification_version: 3
513
+ summary: rspec-core-3.0.0.beta2
393
514
  test_files:
394
515
  - features/README.md
395
516
  - features/Upgrade.md
@@ -415,6 +536,7 @@ test_files:
415
536
  - features/configuration/custom_settings.feature
416
537
  - features/configuration/default_path.feature
417
538
  - features/configuration/deprecation_stream.feature
539
+ - features/configuration/enable_global_dsl.feature
418
540
  - features/configuration/fail_fast.feature
419
541
  - features/configuration/failure_exit_code.feature
420
542
  - features/configuration/order_and_seed.feature
@@ -424,7 +546,7 @@ test_files:
424
546
  - features/configuration/profile.feature
425
547
  - features/configuration/read_options_from_file.feature
426
548
  - features/configuration/run_all_when_everything_filtered.feature
427
- - features/configuration/show_failures_in_pending_blocks.feature
549
+ - features/example_groups/aliasing.feature
428
550
  - features/example_groups/basic_structure.feature
429
551
  - features/example_groups/shared_context.feature
430
552
  - features/example_groups/shared_examples.feature
@@ -435,6 +557,7 @@ test_files:
435
557
  - features/formatters/configurable_colors.feature
436
558
  - features/formatters/custom_formatter.feature
437
559
  - features/formatters/json_formatter.feature
560
+ - features/formatters/regression_tests.feature
438
561
  - features/formatters/text_formatter.feature
439
562
  - features/helper_methods/arbitrary_methods.feature
440
563
  - features/helper_methods/let.feature
@@ -450,12 +573,14 @@ test_files:
450
573
  - features/mock_framework_integration/use_mocha.feature
451
574
  - features/mock_framework_integration/use_rr.feature
452
575
  - features/mock_framework_integration/use_rspec.feature
453
- - features/pending/pending_examples.feature
576
+ - features/pending_and_skipped_examples/README.md
577
+ - features/pending_and_skipped_examples/pending_examples.feature
578
+ - features/pending_and_skipped_examples/skipped_examples.feature
454
579
  - features/spec_files/arbitrary_file_suffix.feature
455
580
  - features/step_definitions/additional_cli_steps.rb
456
581
  - features/subject/explicit_subject.feature
457
- - features/subject/implicit_receiver.feature
458
582
  - features/subject/implicit_subject.feature
583
+ - features/subject/one_liner_syntax.feature
459
584
  - features/support/env.rb
460
585
  - features/support/require_expect_syntax_in_aruba_specs.rb
461
586
  - features/support/rubinius.rb
@@ -476,18 +601,14 @@ test_files:
476
601
  - spec/rspec/core/formatters/deprecation_formatter_spec.rb
477
602
  - spec/rspec/core/formatters/documentation_formatter_spec.rb
478
603
  - spec/rspec/core/formatters/helpers_spec.rb
479
- - spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html
480
- - spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html
481
- - spec/rspec/core/formatters/html_formatted-1.8.7.html
482
- - spec/rspec/core/formatters/html_formatted-1.9.2.html
483
- - spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html
484
- - spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html
485
- - spec/rspec/core/formatters/html_formatted-1.9.3.html
486
- - spec/rspec/core/formatters/html_formatted-2.0.0.html
604
+ - spec/rspec/core/formatters/html_formatted-2.1.0.html
605
+ - spec/rspec/core/formatters/html_formatted.html
487
606
  - spec/rspec/core/formatters/html_formatter_spec.rb
488
607
  - spec/rspec/core/formatters/json_formatter_spec.rb
608
+ - spec/rspec/core/formatters/legacy_formatter_spec.rb
489
609
  - spec/rspec/core/formatters/progress_formatter_spec.rb
490
610
  - spec/rspec/core/formatters/snippet_extractor_spec.rb
611
+ - spec/rspec/core/formatters_spec.rb
491
612
  - spec/rspec/core/hooks_filtering_spec.rb
492
613
  - spec/rspec/core/hooks_spec.rb
493
614
  - spec/rspec/core/memoized_helpers_spec.rb
@@ -495,6 +616,7 @@ test_files:
495
616
  - spec/rspec/core/option_parser_spec.rb
496
617
  - spec/rspec/core/ordering_spec.rb
497
618
  - spec/rspec/core/pending_example_spec.rb
619
+ - spec/rspec/core/pending_spec.rb
498
620
  - spec/rspec/core/project_initializer_spec.rb
499
621
  - spec/rspec/core/rake_task_spec.rb
500
622
  - spec/rspec/core/random_spec.rb
@@ -516,14 +638,15 @@ test_files:
516
638
  - spec/rspec/core_spec.rb
517
639
  - spec/spec_helper.rb
518
640
  - spec/support/config_options_helper.rb
641
+ - spec/support/formatter_support.rb
519
642
  - spec/support/helper_methods.rb
520
- - spec/support/in_sub_process.rb
521
643
  - spec/support/isolate_load_path_mutation.rb
522
644
  - spec/support/isolated_directory.rb
523
645
  - spec/support/isolated_home_directory.rb
646
+ - spec/support/legacy_formatter_using_sub_classing_example.rb
524
647
  - spec/support/matchers.rb
525
648
  - spec/support/mathn_integration_support.rb
526
- - spec/support/sandboxed_mock_space.rb
649
+ - spec/support/old_style_formatter_example.rb
527
650
  - spec/support/shared_example_groups.rb
528
651
  - spec/support/spec_files.rb
529
652
  - spec/support/stderr_splitter.rb