Files
openfoodnetwork/spec/models/custom_tab_spec.rb
2023-05-25 09:19:51 +02:00

12 lines
216 B
Ruby

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