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