* Add new columns to notifications table * Remove stream from notifications and add new methods * Turn off moderation comment notifications * Add notifiable_type index to migration * Stop creation of Stream-based notification model instances * Add notification model create hooks * Add badge achievement notification creation hook * Fix some specs * Add missing @ symbol * Fix for tests and rename a few things * forgot to uncomment code sigh
45 lines
1.2 KiB
Ruby
45 lines
1.2 KiB
Ruby
FactoryBot.define do
|
|
factory :article do
|
|
transient do
|
|
title { Faker::Book.title }
|
|
published { true }
|
|
date { "01/01/2015" }
|
|
tags { Faker::Hipster.words(4).join(", ") }
|
|
canonical_url { Faker::Internet.url }
|
|
with_canonical_url { false }
|
|
with_date { false }
|
|
with_tags { true }
|
|
with_hr_issue { false }
|
|
with_tweet_tag { false }
|
|
with_title { true }
|
|
end
|
|
user
|
|
description { Faker::Hipster.paragraph(1)[0..100] }
|
|
main_image { Faker::Avatar.image }
|
|
language { "en" }
|
|
body_markdown do
|
|
<<~HEREDOC
|
|
---
|
|
title: #{title if with_title}
|
|
published: #{published}
|
|
tags: #{tags if with_tags}
|
|
date: #{date if with_date}
|
|
canonical_url: #{canonical_url if with_canonical_url}
|
|
---
|
|
|
|
#{Faker::Hipster.paragraph(2)}
|
|
#{'{% tweet 1018911886862057472%}' if with_tweet_tag}
|
|
#{Faker::Hipster.paragraph(1)}
|
|
#{"\n\n---\n\n something \n\n---\n funky in the code? \n---\n That's nice" if with_hr_issue}
|
|
HEREDOC
|
|
end
|
|
end
|
|
|
|
trait :video do
|
|
after(:build) do |article|
|
|
article.video = "https://video.com"
|
|
article.user.add_role :video_permission
|
|
article.save
|
|
end
|
|
end
|
|
end
|