I am using cucumber and RSpec for my new ruby on rails application and will be using some third party oAuth APIs to send/retrieve data. I am fairly new to both cucumber and RSpec and have never had to implement third party functionality like this before. What is the best way to handle this from a spec and feature writing perspective? I know I shouldn't be querying the services directly, because I can't spec for them being up or down, etc, so I'm sure I will need to stub/mock some objects/functions. Any help in this matter would be appreciated.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I use a gem called webmock and stub out the requests with results that I know are good. You can also automatically record requests with EphemeralResponse, but I haven't used that yet. |
|||
|
|