mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-25 04:26:08 +10:00
This fixes one of the problems mentioned in gitlab-org/gitlab-ce#1162 and makes the behavior of the commit calendar as described in the profile. "All email addresses will be used to identify your commits."
45 lines
1.3 KiB
Ruby
45 lines
1.3 KiB
Ruby
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
|