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

I'm a rails developer. I test locally and deploy to Heroku.

Often I have a stituation that can't really be tested locally. For example the HireFire gem that dynamically spins up workers when neeed. I cannot test this locally, and it sometimes stops working due to changes or configuration adjustments.

There a number of things like this. I feel that I really want to be testing more than I can. Maybe I should be running my tests or separate tests on Heroku. But I don't think this is recommended or even possible.

How do I deal with this situation?

share|improve this question
I wish I could answer this comprehensively, but I'm not familiar enough with Ruby to do so. I'm a Python dev, and I'd use a monkeypatch. That would allow me to test what happens when it returns specific responses (including, potentially, no response at all). Problem is, every explanation I can find on how to do that is in Python. Example: stackoverflow.com/questions/12210910/… – Lyndsy Simon Feb 15 at 22:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.