To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorRSpec Mocks 2.0
rspec-mocks is used to create dynamic "doubles", which stand in for real
objects in examples. You can set message expectations on them (i.e. mock
methods), and/or stub return values for arbitrary messages:
describe Account do
context "when closed" do
it "logs an account closed message" do
logger = double()
account = Account.new
account.logger = logger
logger.should_receive(:account_closed).with(account)
account.close
end
end
end
Message expectations like the one in the example above are verified at
the end of each example.
Issues
The documentation for rspec-mocks is a work in progress. We'll be adding
Cucumber features over time, and clarifying existing ones. If you have
specific features you'd like to see added, find the existing documentation
incomplete or confusing, or, better yet, wish to write a missing Cucumber
feature yourself, please submit an issue or a pull request.
Topics
Last published over 7 years ago by .