sspec-core 3.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.yardopts +8 -0
  4. data/Changelog.md +2232 -0
  5. data/LICENSE.md +26 -0
  6. data/README.md +384 -0
  7. data/exe/rspec +4 -0
  8. data/lib/rspec/autorun.rb +3 -0
  9. data/lib/rspec/core.rb +185 -0
  10. data/lib/rspec/core/backtrace_formatter.rb +65 -0
  11. data/lib/rspec/core/bisect/coordinator.rb +62 -0
  12. data/lib/rspec/core/bisect/example_minimizer.rb +173 -0
  13. data/lib/rspec/core/bisect/fork_runner.rb +134 -0
  14. data/lib/rspec/core/bisect/server.rb +61 -0
  15. data/lib/rspec/core/bisect/shell_command.rb +126 -0
  16. data/lib/rspec/core/bisect/shell_runner.rb +73 -0
  17. data/lib/rspec/core/bisect/utilities.rb +58 -0
  18. data/lib/rspec/core/configuration.rb +2289 -0
  19. data/lib/rspec/core/configuration_options.rb +233 -0
  20. data/lib/rspec/core/drb.rb +113 -0
  21. data/lib/rspec/core/dsl.rb +98 -0
  22. data/lib/rspec/core/example.rb +653 -0
  23. data/lib/rspec/core/example_group.rb +885 -0
  24. data/lib/rspec/core/example_status_persister.rb +235 -0
  25. data/lib/rspec/core/filter_manager.rb +231 -0
  26. data/lib/rspec/core/flat_map.rb +20 -0
  27. data/lib/rspec/core/formatters.rb +269 -0
  28. data/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
  29. data/lib/rspec/core/formatters/base_formatter.rb +70 -0
  30. data/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
  31. data/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
  32. data/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
  33. data/lib/rspec/core/formatters/console_codes.rb +68 -0
  34. data/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  35. data/lib/rspec/core/formatters/documentation_formatter.rb +70 -0
  36. data/lib/rspec/core/formatters/exception_presenter.rb +508 -0
  37. data/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  38. data/lib/rspec/core/formatters/helpers.rb +110 -0
  39. data/lib/rspec/core/formatters/html_formatter.rb +153 -0
  40. data/lib/rspec/core/formatters/html_printer.rb +414 -0
  41. data/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
  42. data/lib/rspec/core/formatters/json_formatter.rb +102 -0
  43. data/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  44. data/lib/rspec/core/formatters/progress_formatter.rb +29 -0
  45. data/lib/rspec/core/formatters/protocol.rb +182 -0
  46. data/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
  47. data/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
  48. data/lib/rspec/core/hooks.rb +624 -0
  49. data/lib/rspec/core/invocations.rb +87 -0
  50. data/lib/rspec/core/memoized_helpers.rb +554 -0
  51. data/lib/rspec/core/metadata.rb +499 -0
  52. data/lib/rspec/core/metadata_filter.rb +255 -0
  53. data/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  54. data/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  55. data/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  56. data/lib/rspec/core/mocking_adapters/null.rb +14 -0
  57. data/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  58. data/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  59. data/lib/rspec/core/notifications.rb +521 -0
  60. data/lib/rspec/core/option_parser.rb +309 -0
  61. data/lib/rspec/core/ordering.rb +158 -0
  62. data/lib/rspec/core/output_wrapper.rb +29 -0
  63. data/lib/rspec/core/pending.rb +165 -0
  64. data/lib/rspec/core/profiler.rb +34 -0
  65. data/lib/rspec/core/project_initializer.rb +48 -0
  66. data/lib/rspec/core/project_initializer/.rspec +1 -0
  67. data/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
  68. data/lib/rspec/core/rake_task.rb +168 -0
  69. data/lib/rspec/core/reporter.rb +257 -0
  70. data/lib/rspec/core/ruby_project.rb +53 -0
  71. data/lib/rspec/core/runner.rb +199 -0
  72. data/lib/rspec/core/sandbox.rb +37 -0
  73. data/lib/rspec/core/set.rb +54 -0
  74. data/lib/rspec/core/shared_context.rb +55 -0
  75. data/lib/rspec/core/shared_example_group.rb +269 -0
  76. data/lib/rspec/core/shell_escape.rb +49 -0
  77. data/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  78. data/lib/rspec/core/version.rb +9 -0
  79. data/lib/rspec/core/warnings.rb +40 -0
  80. data/lib/rspec/core/world.rb +275 -0
  81. metadata +257 -0
@@ -0,0 +1,26 @@
1
+ The MIT License (MIT)
2
+ =====================
3
+
4
+ * Copyright © 2012 Chad Humphries, David Chelimsky, Myron Marston
5
+ * Copyright © 2009 Chad Humphries, David Chelimsky
6
+ * Copyright © 2006 David Chelimsky, The RSpec Development Team
7
+ * Copyright © 2005 Steven Baker
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining
10
+ a copy of this software and associated documentation files (the
11
+ "Software"), to deal in the Software without restriction, including
12
+ without limitation the rights to use, copy, modify, merge, publish,
13
+ distribute, sublicense, and/or sell copies of the Software, and to
14
+ permit persons to whom the Software is furnished to do so, subject to
15
+ the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be
18
+ included in all copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,384 @@
1
+ # rspec-core [![Build Status](https://secure.travis-ci.org/rspec/rspec-core.svg?branch=master)](http://travis-ci.org/rspec/rspec-core) [![Code Climate](https://codeclimate.com/github/rspec/rspec-core.svg)](https://codeclimate.com/github/rspec/rspec-core)
2
+
3
+ rspec-core provides the structure for writing executable examples of how your
4
+ code should behave, and an `rspec` command with tools to constrain which
5
+ examples get run and tailor the output.
6
+
7
+ ## Install
8
+
9
+ gem install rspec # for rspec-core, rspec-expectations, rspec-mocks
10
+ gem install rspec-core # for rspec-core only
11
+ rspec --help
12
+
13
+ Want to run against the `master` branch? You'll need to include the dependent
14
+ RSpec repos as well. Add the following to your `Gemfile`:
15
+
16
+ ```ruby
17
+ %w[rspec rspec-core rspec-expectations rspec-mocks rspec-support].each do |lib|
18
+ gem lib, :git => "https://github.com/rspec/#{lib}.git", :branch => 'master'
19
+ end
20
+ ```
21
+
22
+ ## Contributing
23
+
24
+ Once you've set up the environment, you'll need to cd into the working
25
+ directory of whichever repo you want to work in. From there you can run the
26
+ specs and cucumber features, and make patches.
27
+
28
+ NOTE: You do not need to use rspec-dev to work on a specific RSpec repo. You
29
+ can treat each RSpec repo as an independent project.
30
+
31
+ * [Build details](BUILD_DETAIL.md)
32
+ * [Code of Conduct](CODE_OF_CONDUCT.md)
33
+ * [Detailed contributing guide](CONTRIBUTING.md)
34
+ * [Development setup guide](DEVELOPMENT.md)
35
+
36
+ ## Basic Structure
37
+
38
+ RSpec uses the words "describe" and "it" so we can express concepts like a conversation:
39
+
40
+ "Describe an order."
41
+ "It sums the prices of its line items."
42
+
43
+ ```ruby
44
+ RSpec.describe Order do
45
+ it "sums the prices of its line items" do
46
+ order = Order.new
47
+
48
+ order.add_entry(LineItem.new(:item => Item.new(
49
+ :price => Money.new(1.11, :USD)
50
+ )))
51
+ order.add_entry(LineItem.new(:item => Item.new(
52
+ :price => Money.new(2.22, :USD),
53
+ :quantity => 2
54
+ )))
55
+
56
+ expect(order.total).to eq(Money.new(5.55, :USD))
57
+ end
58
+ end
59
+ ```
60
+
61
+ The `describe` method creates an [ExampleGroup](http://rubydoc.info/gems/rspec-core/RSpec/Core/ExampleGroup). Within the
62
+ block passed to `describe` you can declare examples using the `it` method.
63
+
64
+ Under the hood, an example group is a class in which the block passed to
65
+ `describe` is evaluated. The blocks passed to `it` are evaluated in the
66
+ context of an _instance_ of that class.
67
+
68
+ ## Nested Groups
69
+
70
+ You can also declare nested nested groups using the `describe` or `context`
71
+ methods:
72
+
73
+ ```ruby
74
+ RSpec.describe Order do
75
+ context "with no items" do
76
+ it "behaves one way" do
77
+ # ...
78
+ end
79
+ end
80
+
81
+ context "with one item" do
82
+ it "behaves another way" do
83
+ # ...
84
+ end
85
+ end
86
+ end
87
+ ```
88
+
89
+ Nested groups are subclasses of the outer example group class, providing
90
+ the inheritance semantics you'd want for free.
91
+
92
+ ## Aliases
93
+
94
+ You can declare example groups using either `describe` or `context`.
95
+ For a top level example group, `describe` and `context` are available
96
+ off of `RSpec`. For backwards compatibility, they are also available
97
+ off of the `main` object and `Module` unless you disable monkey
98
+ patching.
99
+
100
+ You can declare examples within a group using any of `it`, `specify`, or
101
+ `example`.
102
+
103
+ ## Shared Examples and Contexts
104
+
105
+ Declare a shared example group using `shared_examples`, and then include it
106
+ in any group using `include_examples`.
107
+
108
+ ```ruby
109
+ RSpec.shared_examples "collections" do |collection_class|
110
+ it "is empty when first created" do
111
+ expect(collection_class.new).to be_empty
112
+ end
113
+ end
114
+
115
+ RSpec.describe Array do
116
+ include_examples "collections", Array
117
+ end
118
+
119
+ RSpec.describe Hash do
120
+ include_examples "collections", Hash
121
+ end
122
+ ```
123
+
124
+ Nearly anything that can be declared within an example group can be declared
125
+ within a shared example group. This includes `before`, `after`, and `around`
126
+ hooks, `let` declarations, and nested groups/contexts.
127
+
128
+ You can also use the names `shared_context` and `include_context`. These are
129
+ pretty much the same as `shared_examples` and `include_examples`, providing
130
+ more accurate naming when you share hooks, `let` declarations, helper methods,
131
+ etc, but no examples.
132
+
133
+ ## Metadata
134
+
135
+ rspec-core stores a metadata hash with every example and group, which
136
+ contains their descriptions, the locations at which they were
137
+ declared, etc, etc. This hash powers many of rspec-core's features,
138
+ including output formatters (which access descriptions and locations),
139
+ and filtering before and after hooks.
140
+
141
+ Although you probably won't ever need this unless you are writing an
142
+ extension, you can access it from an example like this:
143
+
144
+ ```ruby
145
+ it "does something" do |example|
146
+ expect(example.metadata[:description]).to eq("does something")
147
+ end
148
+ ```
149
+
150
+ ### `described_class`
151
+
152
+ When a class is passed to `describe`, you can access it from an example
153
+ using the `described_class` method, which is a wrapper for
154
+ `example.metadata[:described_class]`.
155
+
156
+ ```ruby
157
+ RSpec.describe Widget do
158
+ example do
159
+ expect(described_class).to equal(Widget)
160
+ end
161
+ end
162
+ ```
163
+
164
+ This is useful in extensions or shared example groups in which the specific
165
+ class is unknown. Taking the collections shared example group from above, we can
166
+ clean it up a bit using `described_class`:
167
+
168
+ ```ruby
169
+ RSpec.shared_examples "collections" do
170
+ it "is empty when first created" do
171
+ expect(described_class.new).to be_empty
172
+ end
173
+ end
174
+
175
+ RSpec.describe Array do
176
+ include_examples "collections"
177
+ end
178
+
179
+ RSpec.describe Hash do
180
+ include_examples "collections"
181
+ end
182
+ ```
183
+
184
+ ## A Word on Scope
185
+
186
+ RSpec has two scopes:
187
+
188
+ * **Example Group**: Example groups are defined by a `describe` or
189
+ `context` block, which is eagerly evaluated when the spec file is
190
+ loaded. The block is evaluated in the context of a subclass of
191
+ `RSpec::Core::ExampleGroup`, or a subclass of the parent example group
192
+ when you're nesting them.
193
+ * **Example**: Examples -- typically defined by an `it` block -- and any other
194
+ blocks with per-example semantics -- such as a `before(:example)` hook -- are
195
+ evaluated in the context of
196
+ an _instance_ of the example group class to which the example belongs.
197
+ Examples are _not_ executed when the spec file is loaded; instead,
198
+ RSpec waits to run any examples until all spec files have been loaded,
199
+ at which point it can apply filtering, randomization, etc.
200
+
201
+ To make this more concrete, consider this code snippet:
202
+
203
+ ``` ruby
204
+ RSpec.describe "Using an array as a stack" do
205
+ def build_stack
206
+ []
207
+ end
208
+
209
+ before(:example) do
210
+ @stack = build_stack
211
+ end
212
+
213
+ it 'is initially empty' do
214
+ expect(@stack).to be_empty
215
+ end
216
+
217
+ context "after an item has been pushed" do
218
+ before(:example) do
219
+ @stack.push :item
220
+ end
221
+
222
+ it 'allows the pushed item to be popped' do
223
+ expect(@stack.pop).to eq(:item)
224
+ end
225
+ end
226
+ end
227
+ ```
228
+
229
+ Under the covers, this is (roughly) equivalent to:
230
+
231
+ ``` ruby
232
+ class UsingAnArrayAsAStack < RSpec::Core::ExampleGroup
233
+ def build_stack
234
+ []
235
+ end
236
+
237
+ def before_example_1
238
+ @stack = build_stack
239
+ end
240
+
241
+ def it_is_initially_empty
242
+ expect(@stack).to be_empty
243
+ end
244
+
245
+ class AfterAnItemHasBeenPushed < self
246
+ def before_example_2
247
+ @stack.push :item
248
+ end
249
+
250
+ def it_allows_the_pushed_item_to_be_popped
251
+ expect(@stack.pop).to eq(:item)
252
+ end
253
+ end
254
+ end
255
+ ```
256
+
257
+ To run these examples, RSpec would (roughly) do the following:
258
+
259
+ ``` ruby
260
+ example_1 = UsingAnArrayAsAStack.new
261
+ example_1.before_example_1
262
+ example_1.it_is_initially_empty
263
+
264
+ example_2 = UsingAnArrayAsAStack::AfterAnItemHasBeenPushed.new
265
+ example_2.before_example_1
266
+ example_2.before_example_2
267
+ example_2.it_allows_the_pushed_item_to_be_popped
268
+ ```
269
+
270
+ ## The `rspec` Command
271
+
272
+ When you install the rspec-core gem, it installs the `rspec` executable,
273
+ which you'll use to run rspec. The `rspec` command comes with many useful
274
+ options.
275
+ Run `rspec --help` to see the complete list.
276
+
277
+ ## Store Command Line Options `.rspec`
278
+
279
+ You can store command line options in a `.rspec` file in the project's root
280
+ directory, and the `rspec` command will read them as though you typed them on
281
+ the command line.
282
+
283
+ ## Get Started
284
+
285
+ Start with a simple example of behavior you expect from your system. Do
286
+ this before you write any implementation code:
287
+
288
+ ```ruby
289
+ # in spec/calculator_spec.rb
290
+ RSpec.describe Calculator do
291
+ describe '#add' do
292
+ it 'returns the sum of its arguments' do
293
+ expect(Calculator.new.add(1, 2)).to eq(3)
294
+ end
295
+ end
296
+ end
297
+ ```
298
+
299
+ Run this with the rspec command, and watch it fail:
300
+
301
+ ```
302
+ $ rspec spec/calculator_spec.rb
303
+ ./spec/calculator_spec.rb:1: uninitialized constant Calculator
304
+ ```
305
+
306
+ Address the failure by defining a skeleton of the `Calculator` class:
307
+
308
+ ```ruby
309
+ # in lib/calculator.rb
310
+ class Calculator
311
+ def add(a, b)
312
+ end
313
+ end
314
+ ```
315
+
316
+ Be sure to require the implementation file in the spec:
317
+
318
+ ```ruby
319
+ # in spec/calculator_spec.rb
320
+ # - RSpec adds ./lib to the $LOAD_PATH
321
+ require "calculator"
322
+ ```
323
+
324
+ Now run the spec again, and watch the expectation fail:
325
+
326
+ ```
327
+ $ rspec spec/calculator_spec.rb
328
+ F
329
+
330
+ Failures:
331
+
332
+ 1) Calculator#add returns the sum of its arguments
333
+ Failure/Error: expect(Calculator.new.add(1, 2)).to eq(3)
334
+
335
+ expected: 3
336
+ got: nil
337
+
338
+ (compared using ==)
339
+ # ./spec/calcalator_spec.rb:6:in `block (3 levels) in <top (required)>'
340
+
341
+ Finished in 0.00131 seconds (files took 0.10968 seconds to load)
342
+ 1 example, 1 failure
343
+
344
+ Failed examples:
345
+
346
+ rspec ./spec/calcalator_spec.rb:5 # Calculator#add returns the sum of its arguments
347
+ ```
348
+
349
+ Implement the simplest solution, by changing the definition of `Calculator#add` to:
350
+
351
+ ```ruby
352
+ def add(a, b)
353
+ a + b
354
+ end
355
+ ```
356
+
357
+ Now run the spec again, and watch it pass:
358
+
359
+ ```
360
+ $ rspec spec/calculator_spec.rb
361
+ .
362
+
363
+ Finished in 0.000315 seconds
364
+ 1 example, 0 failures
365
+ ```
366
+
367
+ Use the `documentation` formatter to see the resulting spec:
368
+
369
+ ```
370
+ $ rspec spec/calculator_spec.rb --format doc
371
+ Calculator
372
+ #add
373
+ returns the sum of its arguments
374
+
375
+ Finished in 0.000379 seconds
376
+ 1 example, 0 failures
377
+ ```
378
+
379
+ ## Also see
380
+
381
+ * [https://github.com/rspec/rspec](https://github.com/rspec/rspec)
382
+ * [https://github.com/rspec/rspec-expectations](https://github.com/rspec/rspec-expectations)
383
+ * [https://github.com/rspec/rspec-mocks](https://github.com/rspec/rspec-mocks)
384
+ * [https://github.com/rspec/rspec-rails](https://github.com/rspec/rspec-rails)
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'rspec/core'
4
+ RSpec::Core::Runner.invoke
@@ -0,0 +1,3 @@
1
+ require 'rspec/core'
2
+ # Ensure the default config is loaded
3
+ RSpec::Core::Runner.autorun
@@ -0,0 +1,185 @@
1
+ # rubocop:disable Style/GlobalVars
2
+ $_rspec_core_load_started_at = Time.now
3
+ # rubocop:enable Style/GlobalVars
4
+
5
+ require "rspec/support"
6
+ RSpec::Support.require_rspec_support "caller_filter"
7
+
8
+ RSpec::Support.define_optimized_require_for_rspec(:core) { |f| require_relative f }
9
+
10
+ %w[
11
+ version
12
+ warnings
13
+
14
+ set
15
+ flat_map
16
+ filter_manager
17
+ dsl
18
+ notifications
19
+ reporter
20
+
21
+ hooks
22
+ memoized_helpers
23
+ metadata
24
+ metadata_filter
25
+ pending
26
+ formatters
27
+ ordering
28
+
29
+ world
30
+ configuration
31
+ option_parser
32
+ configuration_options
33
+ runner
34
+ invocations
35
+ example
36
+ shared_example_group
37
+ example_group
38
+ ].each { |name| RSpec::Support.require_rspec_core name }
39
+
40
+ # Namespace for all core RSpec code.
41
+ module RSpec
42
+ autoload :SharedContext, 'rspec/core/shared_context'
43
+
44
+ extend RSpec::Core::Warnings
45
+
46
+ class << self
47
+ # Setters for shared global objects
48
+ # @api private
49
+ attr_writer :configuration, :world
50
+ end
51
+
52
+ # Used to ensure examples get reloaded and user configuration gets reset to
53
+ # defaults between multiple runs in the same process.
54
+ #
55
+ # Users must invoke this if they want to have the configuration reset when
56
+ # they use the runner multiple times within the same process. Users must deal
57
+ # themselves with re-configuration of RSpec before run.
58
+ def self.reset
59
+ RSpec::ExampleGroups.remove_all_constants
60
+ @world = nil
61
+ @configuration = nil
62
+ end
63
+
64
+ # Used to ensure examples get reloaded between multiple runs in the same
65
+ # process and ensures user configuration is persisted.
66
+ #
67
+ # Users must invoke this if they want to clear all examples but preserve
68
+ # current configuration when they use the runner multiple times within the
69
+ # same process.
70
+ def self.clear_examples
71
+ world.reset
72
+ configuration.reset_reporter
73
+ configuration.start_time = ::RSpec::Core::Time.now
74
+ configuration.reset_filters
75
+ end
76
+
77
+ # Returns the global [Configuration](RSpec/Core/Configuration) object. While
78
+ # you _can_ use this method to access the configuration, the more common
79
+ # convention is to use [RSpec.configure](RSpec#configure-class_method).
80
+ #
81
+ # @example
82
+ # RSpec.configuration.drb_port = 1234
83
+ # @see RSpec.configure
84
+ # @see Core::Configuration
85
+ def self.configuration
86
+ @configuration ||= RSpec::Core::Configuration.new
87
+ end
88
+
89
+ # Yields the global configuration to a block.
90
+ # @yield [Configuration] global configuration
91
+ #
92
+ # @example
93
+ # RSpec.configure do |config|
94
+ # config.add_formatter 'documentation'
95
+ # end
96
+ # @see Core::Configuration
97
+ def self.configure
98
+ yield configuration if block_given?
99
+ end
100
+
101
+ # The example being executed.
102
+ #
103
+ # The primary audience for this method is library authors who need access
104
+ # to the example currently being executed and also want to support all
105
+ # versions of RSpec 2 and 3.
106
+ #
107
+ # @example
108
+ #
109
+ # RSpec.configure do |c|
110
+ # # context.example is deprecated, but RSpec.current_example is not
111
+ # # available until RSpec 3.0.
112
+ # fetch_current_example = RSpec.respond_to?(:current_example) ?
113
+ # proc { RSpec.current_example } : proc { |context| context.example }
114
+ #
115
+ # c.before(:example) do
116
+ # example = fetch_current_example.call(self)
117
+ #
118
+ # # ...
119
+ # end
120
+ # end
121
+ #
122
+ def self.current_example
123
+ RSpec::Support.thread_local_data[:current_example]
124
+ end
125
+
126
+ # Set the current example being executed.
127
+ # @api private
128
+ def self.current_example=(example)
129
+ RSpec::Support.thread_local_data[:current_example] = example
130
+ end
131
+
132
+ # @private
133
+ # Internal container for global non-configuration data.
134
+ def self.world
135
+ @world ||= RSpec::Core::World.new
136
+ end
137
+
138
+ # Namespace for the rspec-core code.
139
+ module Core
140
+ autoload :ExampleStatusPersister, "rspec/core/example_status_persister"
141
+ autoload :Profiler, "rspec/core/profiler"
142
+
143
+ # @private
144
+ # This avoids issues with reporting time caused by examples that
145
+ # change the value/meaning of Time.now without properly restoring
146
+ # it.
147
+ class Time
148
+ class << self
149
+ define_method(:now, &::Time.method(:now))
150
+ end
151
+ end
152
+
153
+ # @private path to executable file.
154
+ def self.path_to_executable
155
+ @path_to_executable ||= File.expand_path('../../../exe/rspec', __FILE__)
156
+ end
157
+ end
158
+
159
+ # @private
160
+ MODULES_TO_AUTOLOAD = {
161
+ :Matchers => "rspec/expectations",
162
+ :Expectations => "rspec/expectations",
163
+ :Mocks => "rspec/mocks"
164
+ }
165
+
166
+ # @private
167
+ def self.const_missing(name)
168
+ # Load rspec-expectations when RSpec::Matchers is referenced. This allows
169
+ # people to define custom matchers (using `RSpec::Matchers.define`) before
170
+ # rspec-core has loaded rspec-expectations (since it delays the loading of
171
+ # it to allow users to configure a different assertion/expectation
172
+ # framework). `autoload` can't be used since it works with ruby's built-in
173
+ # require (e.g. for files that are available relative to a load path dir),
174
+ # but not with rubygems' extended require.
175
+ #
176
+ # As of rspec 2.14.1, we no longer require `rspec/mocks` and
177
+ # `rspec/expectations` when `rspec` is required, so we want
178
+ # to make them available as an autoload.
179
+ require MODULES_TO_AUTOLOAD.fetch(name) { return super }
180
+ ::RSpec.const_get(name)
181
+ end
182
+
183
+ Core::DSL.expose_globally!
184
+ Core::SharedExampleGroup::TopLevelDSL.expose_globally!
185
+ end