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