This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
|
# frozen_string_literal: true
|
|
|
|
OmniAuth.config.test_mode = true
|
|
|
|
def mock_omniauth(provider, data)
|
|
OmniAuth.config.mock_auth[provider] = OmniAuth::AuthHash.new(data)
|
|
end
|