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.

Mocking and faking are ways to isolate code or components to ensure that unit tests run against the testable unit of code only without actually utilizing other components or dependencies of an application. Mocking differs from faking in that a mock can be inspected to assert the results of a test.

learn more… | top users | synonyms (3)

0
votes
0answers
13 views

Are there any mocking libraries/services for Facebook's APIs?

Are there any mocking libraries/services available which can be used when developing apps for Facebook, like there are for Amazon's APIs?
2
votes
0answers
110 views

Test ruby/rails facebook api

Are there any ruby gems that mock out the requests and responses against the Facebook Graph Api? I would start using fakeweb but I feel as though this may have been done.
2
votes
1answer
1k views

omniauth mock facebook response

I'm want to test my login through facebook. Im using pure omniauth, w/o Devise. I check the wiki page and do following: helper for request specs module IntegrationSpecHelper def ...