Welcome to mirror list, hosted at ThFree Co, Russian Federation.

metric_spec.rb « conversational_development_index « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60b1a860dfdadf5e9a3cfedfe6223d6aa391ca2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'rails_helper'

describe ConversationalDevelopmentIndex::Metric do
  let(:conv_dev_index) { create(:conversational_development_index_metric) }

  describe '#percentage_score' do
    it 'returns stored percentage score' do
      expect(conv_dev_index.percentage_score('issues')).to eq(13.331)
    end
  end
end