scinote-web/spec/factories/notifications.rb
2019-06-13 12:10:44 +02:00

10 lines
321 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :notification do
title { '<i>Admin</i> was added as Owner to project ' \
'<strong>Demo project - qPCR</strong> by <i>User</i>.' }
message { 'Project: <a href=\"/projects/3\"> Demo project - qPCR</a>' }
type_of { 'assignment' }
end
end