2018-02-04 05:42:13 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Identity, type: :model do
|
2018-12-06 09:38:49 +01:00
|
|
|
describe '.find_for_oauth' do
|
|
|
|
let(:auth) { Fabricate(:identity, user: Fabricate(:user)) }
|
|
|
|
|
|
|
|
it 'calls .find_or_create_by' do
|
|
|
|
expect(described_class).to receive(:find_or_create_by).with(uid: auth.uid, provider: auth.provider)
|
|
|
|
described_class.find_for_oauth(auth)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns an instance of Identity' do
|
|
|
|
expect(described_class.find_for_oauth(auth)).to be_instance_of Identity
|
|
|
|
end
|
|
|
|
end
|
2018-02-04 05:42:13 +01:00
|
|
|
end
|