mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
15 lines
390 B
Ruby
15 lines
390 B
Ruby
require 'rails_helper'
|
|
require_dependency 'category'
|
|
|
|
describe CategorySerializer do
|
|
let(:category) { Fabricate(:category) }
|
|
|
|
it "includes custom fields" do
|
|
category.custom_fields["enable_marketplace"] = true
|
|
category.save_custom_fields
|
|
|
|
json = described_class.new(category, scope: Guardian.new, root: false).as_json
|
|
expect(json[:custom_fields]).to be_present
|
|
end
|
|
end
|