chinwagsocial/spec/models/follow_spec.rb

39 lines
841 B
Ruby
Raw Normal View History

2016-02-23 02:00:20 +11:00
require 'rails_helper'
RSpec.describe Follow, type: :model do
2016-02-27 01:28:08 +11:00
let(:alice) { Fabricate(:account, username: 'alice') }
let(:bob) { Fabricate(:account, username: 'bob') }
subject { Follow.new(account: alice, target_account: bob) }
2016-02-25 10:17:01 +11:00
describe '#verb' do
2016-02-27 01:28:08 +11:00
it 'is follow' do
expect(subject.verb).to be :follow
end
2016-02-25 10:17:01 +11:00
end
describe '#title' do
2016-02-27 01:28:08 +11:00
it 'describes the follow' do
expect(subject.title).to eql 'alice started following bob'
end
2016-02-25 10:17:01 +11:00
end
describe '#content' do
2016-02-27 01:28:08 +11:00
it 'is the same as the title' do
expect(subject.content).to eql subject.title
end
2016-02-25 10:17:01 +11:00
end
describe '#object_type' do
2016-02-27 01:28:08 +11:00
it 'is a person' do
expect(subject.object_type).to be :person
end
2016-02-25 10:17:01 +11:00
end
describe '#target' do
2016-02-27 01:28:08 +11:00
it 'is the person being followed' do
expect(subject.target).to eq bob
end
2016-02-25 10:17:01 +11:00
end
2016-02-23 02:00:20 +11:00
end