I am interested in using both of these authentication schemes but setting the user model to has_secure_password forces a validation on password_digest. I am curious if there is a standarized way for creating a user via an oauth mechanism in this way for rails 3.1.x with omniauth-facebook. Like stubbing in a test value into the password_digest or some other thing? Or perhaps turning off the validations in a certain condition when used with has_secure_password (although I don't know really how I would do this and would appreciate help).
I see that there is a commit for oauthed_user (https://github.com/rails/rails/blob/master/activemodel/test/models/oauthed_user.rb) but am not really sure about how this should be used.
thx for any info / advice