Files
openfoodnetwork/spec/models/custom_tab_spec.rb
Jean-Baptiste Bellet 5938577bd1 Update custom_tab_spec.rb
2023-06-05 15:43:11 +02:00

14 lines
263 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe CustomTab do
describe 'associations' do
it { is_expected.to belong_to(:enterprise).required }
end
describe 'validations' do
it { is_expected.to validate_presence_of(:title) }
end
end