diff options
Diffstat (limited to 'spec/models/ml/candidate_param_spec.rb')
-rw-r--r-- | spec/models/ml/candidate_param_spec.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/models/ml/candidate_param_spec.rb b/spec/models/ml/candidate_param_spec.rb new file mode 100644 index 00000000000..ff38e471219 --- /dev/null +++ b/spec/models/ml/candidate_param_spec.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +require 'spec_helper' + +RSpec.describe Ml::CandidateParam do + describe 'associations' do + it { is_expected.to belong_to(:candidate) } + end +end |