mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-29 21:17:17 +00:00
12 lines
210 B
Ruby
12 lines
210 B
Ruby
require 'spec_helper'
|
|
|
|
describe EnterpriseFee do
|
|
describe "associations" do
|
|
it { should belong_to(:enterprise) }
|
|
end
|
|
|
|
describe "validations" do
|
|
it { should validate_presence_of(:name) }
|
|
end
|
|
end
|