about summary refs log tree commit diff
path: root/spec/models/favourite_spec.rb
blob: ba1410a453272e68182a9b9d0407f327cc99d988 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'rails_helper'

RSpec.describe Favourite, type: :model do
  let(:account) { Fabricate(:account) }

  context 'when status is a reblog' do
    let(:reblog) { Fabricate(:status, reblog: nil) }
    let(:status) { Fabricate(:status, reblog: reblog) }

    it 'invalidates if the reblogged status is already a favourite' do
      Favourite.create!(account: account, status: reblog)
      expect(Favourite.new(account: account, status: status).valid?).to eq false
    end

    it 'replaces status with the reblogged one if it is a reblog' do
      favourite = Favourite.create!(account: account, status: status)
      expect(favourite.status).to eq reblog
    end
  end

  context 'when status is not a reblog' do
    let(:status) { Fabricate(:status, reblog: nil) }

    it 'saves with the specified status' do
      favourite = Favourite.create!(account: account, status: status)
      expect(favourite.status).to eq status
    end
  end
end