1
+ require 'rspec/core'
2
+
1
3
class NullObject
2
4
private
3
5
def method_missing ( method , *args , &block )
@@ -6,39 +8,39 @@ def method_missing(method, *args, &block)
6
8
end
7
9
8
10
def sandboxed ( &block )
9
- begin
10
- @orig_config = RSpec . configuration
11
- @orig_world = RSpec . world
12
- new_config = RSpec ::Core ::Configuration . new
13
- new_world = RSpec ::Core ::World . new ( new_config )
14
- RSpec . instance_variable_set ( :@configuration , new_config )
15
- RSpec . instance_variable_set ( :@world , new_world )
16
- object = Object . new
17
- object . extend ( RSpec ::Core ::ObjectExtensions )
18
- object . extend ( RSpec ::Core ::SharedExampleGroup )
11
+ @orig_config = RSpec . configuration
12
+ @orig_world = RSpec . world
13
+ new_config = RSpec ::Core ::Configuration . new
14
+ new_world = RSpec ::Core ::World . new ( new_config )
15
+ RSpec . instance_variable_set ( :@configuration , new_config )
16
+ RSpec . instance_variable_set ( :@world , new_world )
19
17
20
- ( class << RSpec ::Core ::ExampleGroup ; self ; end ) . class_eval do
21
- alias_method :orig_run , :run
22
- def run ( reporter = nil )
23
- @orig_mock_space = RSpec ::Mocks ::space
24
- RSpec ::Mocks ::space = RSpec ::Mocks ::Space . new
25
- orig_run ( reporter || NullObject . new )
26
- ensure
27
- RSpec ::Mocks ::space = @orig_mock_space
28
- end
29
- end
18
+ load 'rspec-steps/duckpunch/example-group.rb'
30
19
31
- object . instance_eval ( &block )
32
- ensure
33
- ( class << RSpec ::Core ::ExampleGroup ; self ; end ) . class_eval do
34
- remove_method :run
35
- alias_method :run , :orig_run
36
- remove_method :orig_run
20
+ object = Object . new
21
+ object . extend ( RSpec ::Core ::SharedExampleGroup )
22
+
23
+ ( class << RSpec ::Core ::ExampleGroup ; self ; end ) . class_eval do
24
+ alias_method :orig_run , :run
25
+ def run ( reporter = nil )
26
+ @orig_mock_space = RSpec ::Mocks ::space
27
+ RSpec ::Mocks ::space = RSpec ::Mocks ::Space . new
28
+ orig_run ( reporter || NullObject . new )
29
+ ensure
30
+ RSpec ::Mocks ::space = @orig_mock_space
37
31
end
32
+ end
38
33
39
- RSpec . instance_variable_set ( :@configuration , @orig_config )
40
- RSpec . instance_variable_set ( :@world , @orig_world )
34
+ object . instance_eval ( &block )
35
+ ensure
36
+ ( class << RSpec ::Core ::ExampleGroup ; self ; end ) . class_eval do
37
+ remove_method :run
38
+ alias_method :run , :orig_run
39
+ remove_method :orig_run
41
40
end
41
+
42
+ RSpec . instance_variable_set ( :@configuration , @orig_config )
43
+ RSpec . instance_variable_set ( :@world , @orig_world )
42
44
end
43
45
44
46
#Original from rspec-core
0 commit comments