I am new to mock objects, and I am trying to learn how to use them in RSpec. Can someone please post an example (a hello RSpec Mock object world type example), or a link (or any other reference) on how to use the RSpec mock object api?
|
Here's an example of a simple mock I did for a controller test in a rails application:
In this case, I'm mocking the Page & PageType models (Objects) as well as stubbing out a few of the methods I call. This gives me the ability to run a tests like this:
I know this answer is more rails specific, but I hope it helps you out a little. Edit Ok, so here is a hello world example... Given the following script (hello.rb):
We can create the following spec (hello_spec.rb):
|
||||
|
|
|
http://rspec.info/documentation/mocks/ http://rspec.info/documentation/mocks/stubs.html is what I use typically, though that's no indication of quality. |
|||||
|
|
|
I don't have enough points to post a comment to an answer but I wanted to say that the accepted answer also helped me with trying to figure out how to stub in a random value. I needed to be able to stub an object's instance value that is randomly assigned for example:
Then in my spec I had a problem on figuring out how to stub the clumsy player's random health to test that when they get a heal, they get the proper boost to their health. The trick was:
So that So thank you Brian |
|||
|
|