spec/cucumber/formatter/rerun_spec.rb in cucumber-2.0.0 vs spec/cucumber/formatter/rerun_spec.rb in cucumber-2.0.1
- old
+ new
@@ -42,11 +42,11 @@
step 'passing'
end
end
end
io = StringIO.new
- report = Rerun.new(double, io, double)
+ report = Rerun.new(double, io, {})
execute [gherkin], report, [WithSteps.new]
expect( io.string ).to eq 'foo.feature:3:6'
end
@@ -77,11 +77,11 @@
end
end
end
io = StringIO.new
- report = Rerun.new(double, io, double)
+ report = Rerun.new(double, io, {})
execute [foo, bar], report, [WithSteps.new]
expect(io.string).to eq 'foo.feature:3:6 bar.feature:3'
end
@@ -96,10 +96,10 @@
end
end
end
io = StringIO.new
- report = Rerun.new(double, io, double)
+ report = Rerun.new(double, io, {})
execute [gherkin], report, [WithSteps.new]
end
end
end