summaryrefslogtreecommitdiffstats
path: root/spec/models/identity_spec.rb
blob: 22c8dbf224e4f3ae49e2fbeed3c5b7f5656f0a4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe Identity do
  describe '.find_for_omniauth' 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_omniauth(auth)
    end

    it 'returns an instance of Identity' do
      expect(described_class.find_for_omniauth(auth)).to be_instance_of described_class
    end
  end
end