This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
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) }
|
2017-04-05 00:29:56 +02:00
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
it 'has a valid fabricator' do
|
|
|
|
follow = Fabricate.build(:follow)
|
|
|
|
expect(follow).to be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is invalid without an account' do
|
|
|
|
follow = Fabricate.build(:follow, account: nil)
|
|
|
|
follow.valid?
|
|
|
|
expect(follow).to model_have_error_on_field(:account)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is invalid without a target_account' do
|
|
|
|
follow = Fabricate.build(:follow, target_account: nil)
|
|
|
|
follow.valid?
|
|
|
|
expect(follow).to model_have_error_on_field(:target_account)
|
|
|
|
end
|
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|