Files
sx-fc/spec/models/menu_item_attribute_spec.rb
2017-04-03 21:26:22 +06:30

8 lines
221 B
Ruby

require 'rails_helper'
RSpec.describe MenuItemAttribute, type: :model do
it { should validate_presence_of(:attribute_type) }
it { should validate_presence_of(:name) }
it { should validate_presence_of(:value) }
end