Files
sx-fc/spec/models/menu_item_attribute_spec.rb
2017-10-23 11:38:10 +06:30

8 lines
221 B
Ruby
Executable File

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