diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-02-11 17:09:36 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-02-11 17:13:11 +0100 |
commit | 50660d54e8cabd08fee649a6abc26f35a8d7a82c (patch) | |
tree | 0124bd26554896a409dc7b7b6bb357fc8be8e2c6 /spec/models | |
parent | 0b95eb36128077b3074f661dd451a90a18441ef0 (diff) |
Fix semantics of follow requests another slaps
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/favourite_spec.rb | 9 | ||||
-rw-r--r-- | spec/models/follow_spec.rb | 4 |
2 files changed, 4 insertions, 9 deletions
diff --git a/spec/models/favourite_spec.rb b/spec/models/favourite_spec.rb index 6cf3af464..cc3d604d6 100644 --- a/spec/models/favourite_spec.rb +++ b/spec/models/favourite_spec.rb @@ -26,13 +26,8 @@ RSpec.describe Favourite, type: :model do end describe '#object_type' do - 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 + it 'is an activity' do + expect(subject.object_type).to be :activity end end diff --git a/spec/models/follow_spec.rb b/spec/models/follow_spec.rb index c9d02ab16..bc887b60d 100644 --- a/spec/models/follow_spec.rb +++ b/spec/models/follow_spec.rb @@ -25,8 +25,8 @@ RSpec.describe Follow, type: :model do end describe '#object_type' do - it 'is a person' do - expect(subject.object_type).to be :person + it 'is an activity' do + expect(subject.object_type).to be :activity end end |