mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-14 23:47:48 +00:00
14 lines
275 B
Ruby
14 lines
275 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Spree::ProductProperty do
|
|
context "validations" do
|
|
it "should validate length of value" do
|
|
pp = create(:product_property)
|
|
pp.value = "x" * 256
|
|
expect(pp).to_not be_valid
|
|
end
|
|
end
|
|
end
|