summaryrefslogtreecommitdiff
path: root/spec/lib/ci/charts_spec.rb
blob: 83e2ad220b832995607ea94d86ee3a023704d386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'spec_helper'

describe "Charts" do

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

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