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

repository_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3a38f6c5b9261e0408ac28ab1cc285bf2caa785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
require 'spec_helper'

describe Repository do
  include RepoHelpers

  let(:repository) { create(:project).repository }

  describe :branch_names_contains do
    subject { repository.branch_names_contains(sample_commit.id) }

    it { is_expected.to include('master') }
    it { is_expected.not_to include('feature') }
    it { is_expected.not_to include('fix') }
  end

  describe :last_commit_for_path do
    subject { repository.last_commit_for_path(sample_commit.id, '.gitignore').id }

    it { is_expected.to eq('c1acaa58bbcbc3eafe538cb8274ba387047b69f8') }
  end

  context :timestamps_by_user_log do
    before do
      Date.stub(:today).and_return(Date.new(2015, 03, 01))
    end

    describe 'single e-mail for user' do
      let(:user) { create(:user, email: sample_commit.author_email) }

      subject { repository.timestamps_by_user_log(user) }

      it { is_expected.to eq(["2014-08-06", "2014-07-31", "2014-07-31"]) }
    end

    describe 'multiple emails for user' do
      let(:email_alias) { create(:email, email: another_sample_commit.author_email) }
      let(:user) { create(:user, email: sample_commit.author_email, emails: [email_alias]) }

      subject { repository.timestamps_by_user_log(user) }

      it { is_expected.to eq(["2015-01-10", "2014-08-06", "2014-07-31", "2014-07-31"]) }
    end
  end
end