2016-02-23 13:17:37 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Favourite, type: :model do
|
2016-02-26 09:28:08 -05:00
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
let(:bob) { Fabricate(:account, username: 'bob') }
|
|
|
|
let(:status) { Fabricate(:status, account: bob) }
|
|
|
|
|
|
|
|
subject { Favourite.new(account: alice, status: status) }
|
|
|
|
|
2016-02-24 18:17:01 -05:00
|
|
|
describe '#verb' do
|
2016-02-26 09:28:08 -05:00
|
|
|
it 'is always favorite' do
|
|
|
|
expect(subject.verb).to be :favorite
|
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#title' do
|
2016-02-26 09:28:08 -05:00
|
|
|
it 'describes the favourite' do
|
|
|
|
expect(subject.title).to eql 'alice favourited a status by bob'
|
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#content' do
|
2016-02-26 09:28:08 -05:00
|
|
|
it 'equals the title' do
|
|
|
|
expect(subject.content).to eq subject.title
|
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#object_type' do
|
2016-02-26 09:28:08 -05:00
|
|
|
it 'is a note when the target is a note' do
|
|
|
|
expect(subject.object_type).to be :note
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is a comment when the target is a comment' do
|
|
|
|
status.in_reply_to_id = 2
|
|
|
|
expect(subject.object_type).to be :comment
|
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#target' do
|
2016-02-26 09:28:08 -05:00
|
|
|
it 'is the status that was favourited' do
|
|
|
|
expect(subject.target).to eq status
|
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#thread' do
|
2016-02-26 09:28:08 -05:00
|
|
|
it 'equals the target' do
|
|
|
|
expect(subject.thread).to eq subject.target
|
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|
2016-02-23 13:17:37 -05:00
|
|
|
end
|