mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-13 23:37:47 +00:00
12 lines
216 B
Ruby
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
|