You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
987 B
31 lines
987 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
RSpec.describe Favourite 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 |
|
described_class.create!(account: account, status: reblog) |
|
expect(described_class.new(account: account, status: status).valid?).to be false |
|
end |
|
|
|
it 'replaces status with the reblogged one if it is a reblog' do |
|
favourite = described_class.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 = described_class.create!(account: account, status: status) |
|
expect(favourite.status).to eq status |
|
end |
|
end |
|
end
|
|
|