85 lines
2.1 KiB
Ruby
85 lines
2.1 KiB
Ruby
Fabricator(:post) do
|
|
user
|
|
topic {|attrs| Fabricate(:topic, user: attrs[:user] ) }
|
|
raw "Hello world"
|
|
end
|
|
|
|
Fabricator(:post_with_youtube, from: :post) do
|
|
cooked '<p><a href="http://www.youtube.com/watch?v=9bZkp7q19f0" class="onebox" target="_blank">http://www.youtube.com/watch?v=9bZkp7q19f0</a></p>'
|
|
end
|
|
|
|
Fabricator(:old_post, from: :post) do
|
|
topic {|attrs| Fabricate(:topic, user: attrs[:user], created_at: (DateTime.now - 100) ) }
|
|
created_at (DateTime.now - 100)
|
|
end
|
|
|
|
Fabricator(:moderator_post, from: :post) do
|
|
user
|
|
topic {|attrs| Fabricate(:topic, user: attrs[:user] ) }
|
|
post_type Post.types[:moderator_action]
|
|
raw "Hello world"
|
|
end
|
|
|
|
|
|
Fabricator(:post_with_images, from: :post) do
|
|
raw "
|
|
<img src='/path/to/img.jpg' height='50' width='50'>
|
|
![Alt text](/second_image.jpg)
|
|
"
|
|
end
|
|
|
|
Fabricator(:post_with_image_url, from: :post) do
|
|
cooked "
|
|
<img src=\"http://www.forumwarz.com/images/header/logo.png\">
|
|
"
|
|
end
|
|
|
|
Fabricator(:post_with_s3_image_url, from: :post) do
|
|
cooked "
|
|
<img src=\"//bucket.s3.amazonaws.com/uploads/6/4/123.png\">
|
|
"
|
|
end
|
|
|
|
Fabricator(:basic_reply, from: :post) do
|
|
user(:coding_horror)
|
|
reply_to_post_number 1
|
|
topic
|
|
raw 'this reply has no quotes'
|
|
end
|
|
|
|
Fabricator(:reply, from: :post) do
|
|
user(:coding_horror)
|
|
topic
|
|
raw '
|
|
[quote="Evil Trout, post:1"]hello[/quote]
|
|
Hmmm!
|
|
'
|
|
end
|
|
|
|
Fabricator(:post_with_external_links, from: :post) do
|
|
user
|
|
topic
|
|
raw "
|
|
Here's a link to twitter: http://twitter.com
|
|
And a link to google: http://google.com
|
|
And a markdown link: [forumwarz](http://forumwarz.com)
|
|
And a markdown link with a period after it [codinghorror](http://www.codinghorror.com/blog).
|
|
"
|
|
end
|
|
|
|
Fabricator(:private_message_post, from: :post) do
|
|
user
|
|
topic do |attrs|
|
|
Fabricate( :private_message_topic,
|
|
user: attrs[:user],
|
|
created_at: attrs[:created_at],
|
|
subtype: TopicSubtype.user_to_user,
|
|
topic_allowed_users: [
|
|
Fabricate.build(:topic_allowed_user, user_id: attrs[:user].id),
|
|
Fabricate.build(:topic_allowed_user, user_id: Fabricate(:user).id)
|
|
]
|
|
)
|
|
end
|
|
raw "Ssshh! This is our secret conversation!"
|
|
end
|