mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-29 21:17:17 +00:00
8 lines
236 B
Ruby
8 lines
236 B
Ruby
describe Api::Admin::VariantSerializer do
|
|
let(:variant) { create(:variant) }
|
|
it "serializes a variant" do
|
|
serializer = Api::Admin::VariantSerializer.new variant
|
|
serializer.to_json.should match variant.options_text
|
|
end
|
|
end
|