Require associations of CoordinatorFee

This commit is contained in:
Maikel Linke
2023-05-16 15:31:50 +10:00
parent c02c90317f
commit fc00a48d67
4 changed files with 20 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
# frozen_string_literal: true
require 'spec_helper'
describe CoordinatorFee do
it { is_expected.to belong_to(:order_cycle).required }
it { is_expected.to belong_to(:enterprise_fee).required }
end