This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x = Core::Apache.new | |
x.should_receive(:restart).and_return '' | |
x.some_method_that_calls_restart |
At the end of the test if restart has not been called then the entire test fails. Because of the way that cucumber works with rspec 1.3 (rails 2.x, which is required by the project) registering a should_receive has no effect (seems this is fixed in the cucumber/rspec versions for rails 3). Even if it were to work it would mean putting a Then before the When or putting a test in a Given. To me that just seems wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scenario: Apache restart | |
Given Apache is running | |
Then Apache should restart | |
When I go to the apache page | |
And I click restart |
What I had to do to simulate a should_receive but still maintain the flow of the scenario was break it up so that I stub the function and when that function is called I set a flag. Later I test that the flag is set.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scenario: Apache restart again | |
Given Apache is running | |
And Apache can restart | |
When I go to the apache page | |
And I click restart | |
Then Apache should restart |
The step that sets the flag is Apache can restart and the one that tests is Apache should restart. Here are the step definitions:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Given /^Apache can restart$/ do | |
x = Apache.new | |
Apache.stub!(:new).and_return x # or not everyone gets my stub | |
x.stub!(:restart) do |args| | |
@apache_restart = true | |
'apache restarted' | |
end | |
end | |
Then /^Apache should restart$/ do | |
@apache_restart.should be_true | |
end |