2022-12-28 16:07:06 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
describe AdminUserActionSerializer do
|
2023-11-10 06:47:59 +08:00
|
|
|
fab!(:user)
|
|
|
|
fab!(:admin)
|
2022-12-28 16:07:06 +08:00
|
|
|
let(:guardian) { Guardian.new(admin) }
|
|
|
|
|
2023-11-10 06:47:59 +08:00
|
|
|
fab!(:topic)
|
2022-12-28 16:07:06 +08:00
|
|
|
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
|