Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example, I want to say b = double("book") in irb and play with the result.

In irb if I say

require 'rspec'
b = double("book")

I get an error. Ideas?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can play around with RSpec test doubles in irb by requiring "rspec/mocks/standalone":

$ irb
> require 'rspec/mocks/standalone'
> b = double("book")
  =>  #<RSpec::Mocks::Mock:0x3fd88d0157e8 @name="book">
share|improve this answer
Great tip! What other .../standalone options are there? Any? – pitosalas Feb 19 at 23:37
As far as I know, it's only mocks, but you can stub methods and set message expectations on your mock objects, which is pretty handy. If you find anything interesting out, please update this thread! – Paul Fioravanti Feb 19 at 23:43
1  
The other idea I got which is quite nice is to call irb or pry from inside the test that you are trying fix. That will allow you to have a 100% correct state in which to experiment. – pitosalas Feb 23 at 17:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.