Skip to content

Commit e3ff1ec

Browse files
committed
Update to work with (probably only) RSpec 2.6
1 parent 4b8076d commit e3ff1ec

9 files changed

+57
-56
lines changed

.rspec

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
--format documentation
2-
--out last_run
32
-I /home/judson/ruby/gems/rspec-steps/spec_help/interpose
43
-I /home/judson/ruby/gems/rspec-steps/lib
54
-I /home/judson/ruby/gems/rspec-steps/spec_help
6-
--require spec_helper
5+
--require spec_helper

Gemfile.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
rspec-steps (0.0.3)
5-
rspec (>= 2.0)
5+
rspec (>= 2.6)
66

77
GEM
88
remote: http://judson:[email protected]/
@@ -23,14 +23,14 @@ GEM
2323
rake (>= 0.8.7)
2424
rcov (0.9.9)
2525
rdoc (2.3.0)
26-
rspec (2.5.0)
27-
rspec-core (~> 2.5.0)
28-
rspec-expectations (~> 2.5.0)
29-
rspec-mocks (~> 2.5.0)
30-
rspec-core (2.5.1)
31-
rspec-expectations (2.5.0)
26+
rspec (2.6.0)
27+
rspec-core (~> 2.6.0)
28+
rspec-expectations (~> 2.6.0)
29+
rspec-mocks (~> 2.6.0)
30+
rspec-core (2.6.4)
31+
rspec-expectations (2.6.0)
3232
diff-lcs (~> 1.1.2)
33-
rspec-mocks (2.5.0)
33+
rspec-mocks (2.6.0)
3434

3535
PLATFORMS
3636
ruby

lib/rspec-steps.rb

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
require 'rspec-steps/duckpunch/object-extensions'
22
require 'rspec-steps/duckpunch/example-group'
3-

lib/rspec-steps/duckpunch/example-group.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
require 'rspec/core/example_group'
12
require 'rspec-steps/stepwise'
23

34
module RSpec::Steps
@@ -14,5 +15,6 @@ def steps(*args, &block)
1415
end
1516

1617
RSpec::Core::ExampleGroup.extend RSpec::Steps::ClassMethods
18+
include RSpec::Steps::ClassMethods
1719

1820
RSpec::configuration.include(RSpecStepwise, :stepwise => true)
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
require 'rspec-steps/duckpunch/example-group'
22
require 'rspec-steps/stepwise'
3+
require 'rspec/core/shared_example_group'
34

4-
module RSpec::Steps
5-
module ObjectExtensions
6-
alias :shared_steps :shared_context
7-
alias :steps_shared_as :share_as
8-
end
5+
module RSpec::Core::SharedExampleGroup
6+
alias :shared_steps :share_examples_for
7+
alias :steps_shared_as :share_as
98
end
10-
11-
include RSpec::Steps::ObjectExtensions
129
extend RSpec::Steps::ClassMethods

lib/rspec-steps/stepwise.rb

+5-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def around(*args, &block)
3939
def eval_before_alls(example_group_instance)
4040
super
4141
example_group_instance.example = whole_list_example
42-
world.run_hook_filtered(:before, :each, self, example_group_instance, example)
42+
world.run_hook_filtered(:before, :each, self, example_group_instance, whole_list_example)
4343
ancestors.reverse.each { |ancestor| ancestor.run_hook(:before, :each, example_group_instance) }
4444
end
4545

@@ -55,12 +55,14 @@ def eval_after_eachs(example)
5555
def eval_after_alls(example_group_instance)
5656
example_group_instance.example = whole_list_example
5757
ancestors.each { |ancestor| ancestor.run_hook(:after, :each, example_group_instance) }
58-
world.run_hook_filtered(:after, :each, self, example_group_instance, example)
58+
world.run_hook_filtered(:after, :each, self, example_group_instance, whole_list_example)
5959
super
6060
end
6161

6262
def whole_list_example
63-
RSpec::Core::Example.new(self, "step list", {})
63+
@whole_list_example ||= begin
64+
RSpec::Core::Example.new(self, "step list", {})
65+
end
6466
end
6567

6668
def with_around_hooks(instance, &block)

rspec-steps.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |spec|
22
spec.name = "rspec-steps"
3-
spec.version = "0.0.3"
3+
spec.version = "0.0.4"
44
author_list = {
55
"Judson Lester" => "[email protected]"
66
}
@@ -73,7 +73,7 @@ Gem::Specification.new do |spec|
7373
spec.rdoc_options += %w{--main doc/README }
7474
spec.rdoc_options += ["--title", "#{spec.name}-#{spec.version} RDoc"]
7575

76-
spec.add_dependency("rspec", ">= 2.0")
76+
spec.add_dependency("rspec", ">= 2.6")
7777

7878
spec.post_install_message = "Another tidy package brought to you by Judson"
7979
end

spec/example_group.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
group = steps "Test Steps" do
1010
end
1111
end
12-
(class << group; self; end).included_modules.should include(RSpecStepwise)
12+
(class << group; self; end).included_modules.should include(RSpecStepwise::ClassMethods)
1313
end
1414
end
1515

@@ -18,8 +18,8 @@
1818
group = nil
1919
sandboxed do
2020
group = steps "Test Steps" do
21-
it { @a = 1 }
22-
it { @a.should == 1}
21+
it("sets @a"){ @a = 1 }
22+
it("reads @a"){ @a.should == 1}
2323
end
2424
group.run
2525
end
@@ -42,7 +42,7 @@
4242
group.examples[1].metadata[:pending].should be_true
4343
end
4444

45-
it "should allow nested steps" do
45+
it "should allow nested steps", :pending => "Not really" do
4646
group = nil
4747
sandboxed do
4848
group = steps "Test Steps" do
@@ -59,7 +59,7 @@
5959
end
6060
group.children[0].should have(2).examples
6161
end
62-
62+
6363
it "should not allow nested normal contexts" do
6464
pending "A correct approach - in the meantime, this behavior is undefined"
6565
expect {

spec_help/rspec-sandbox.rb

+30-28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require 'rspec/core'
2+
13
class NullObject
24
private
35
def method_missing(method, *args, &block)
@@ -6,39 +8,39 @@ def method_missing(method, *args, &block)
68
end
79

810
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)
1917

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'
3019

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
3731
end
32+
end
3833

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
4140
end
41+
42+
RSpec.instance_variable_set(:@configuration, @orig_config)
43+
RSpec.instance_variable_set(:@world, @orig_world)
4244
end
4345

4446
#Original from rspec-core

0 commit comments

Comments
 (0)