mastodon/spec/models/follow_spec.rb

45 lines
946 B
Ruby
Raw Normal View History

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