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

charts_spec.rb « lib « ci « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 236cfc2a1f60bb053c6675eac5b9936937d1570b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'spec_helper'

describe "Charts" do

  context "build_times" do
    before do
      @project = FactoryGirl.create(:project)
      @commit = FactoryGirl.create(:commit, project: @project)
      FactoryGirl.create(:build, commit: @commit)
    end

    it 'should return build times in minutes' do
      chart = Charts::BuildTime.new(@project)
      chart.build_times.should == [2]
    end
  end
end