10 lines
179 B
Ruby
10 lines
179 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
RSpec.describe Ml::CandidateMetric do
|
||
|
describe 'associations' do
|
||
|
it { is_expected.to belong_to(:candidate) }
|
||
|
end
|
||
|
end
|