I'm using Rails 3.0.3, Rspec2 , Cucumber , Capybara
How should a scenario look for user signup process , when using the Omniauth gem ?
I mean it doesn't make sense for me to testing this library, I only want to test the whole user registration process of my applications point of view:
- open my root_path # my app
- click on /auth/facebook # my app
- THIS IS THE PART OF OMNIAUTH # not my app, doesn't need testing
- access /auth/facebook/callback # my app
- read user information , compare # my app
What is the good practice to test it ?