fix code style

This commit is contained in:
miha 2021-03-29 10:59:38 +02:00
parent 8f0713229a
commit 3cc4326eb7

View file

@ -105,24 +105,24 @@ describe Activity, type: :model do
end
describe '.notifiable?' do
context 'Creating notifiable activity' do
let(:activity) do
let(:activity) do
create :activity,
subject: (create :task_comment),
type_of: 'add_comment_to_module', subject_type: 'MyModule'
end
it 'is notifiable when when creating comment' do
expect(activity.send(:notifiable?)).to be true
expect(activity.__send__(:notifiable?)).to be true
end
end
context 'Creating non-notifiable activity' do
let(:activity) do
let(:activity) do
create :activity,
subject: (create :my_module),
type_of: 'create_module', subject_type: 'MyModule'
end
it 'is not notifiable when when creating new task' do
expect(activity.send(:notifiable?)).to be false
expect(activity.__send__(:notifiable?)).to be false
end
end
end