Use User and Admin orm_adapter adapter in tests to support other ORMs (neo4j, in this case)

This commit is contained in:
Brian Underwood
2014-06-04 21:59:30 -07:00
parent 65d7d1ba55
commit 2174e4675e
3 changed files with 19 additions and 16 deletions

View File

@@ -6,7 +6,7 @@ class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
end
def sign_in_facebook
user = User.find_by_email('user@test.com')
user = UserAdapter.find_first(email: 'user@test.com')
user.remember_me = true
sign_in user
render text: ""