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: b31936195039170fc6a52b0d8104783abc37a90a (plain)
1
2
3
4
5
6
7
8
9
10
11
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