mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
7 lines
227 B
Ruby
7 lines
227 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.name
|
|
end
|
|
end |