mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
6e161d3e75
The most common thing that we do with fab! is: fab!(:thing) { Fabricate(:thing) } This commit adds a shorthand for this which is just simply: fab!(:thing) i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
21 lines
534 B
Ruby
21 lines
534 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe AdminUserActionSerializer do
|
|
fab!(:user)
|
|
fab!(:admin)
|
|
let(:guardian) { Guardian.new(admin) }
|
|
|
|
fab!(:topic)
|
|
fab!(:post) { Fabricate(:post, topic: topic) }
|
|
|
|
it "includes the slug/title/category ID for a post's deleted topic" do
|
|
topic.trash!
|
|
|
|
json = AdminUserActionSerializer.new(post, scope: guardian, root: false).as_json
|
|
|
|
expect(json[:slug]).to eq(topic.slug)
|
|
expect(json[:title]).to eq(topic.title)
|
|
expect(json[:category_id]).to eq(topic.category_id)
|
|
end
|
|
end
|