about summary refs log tree commit diff
path: root/spec/models/identity_spec.rb
blob: 6eab5a2e188a72f4b35d3db4cdd52ffc0aced209 (plain) (blame)
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, type: :model do
  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
end