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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-24 15:08:01 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-24 15:08:01 +0300
commitc6373a2cec855c6543a1e035c52099e102dd05ef (patch)
tree507c4d975e1bf559a008d997ad4b07dad14f397e /spec/lib/gitlab/git_spec.rb
parent6593f1f627938f22090dec5221476772d3ed581d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/gitlab/git_spec.rb')
-rw-r--r--spec/lib/gitlab/git_spec.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/spec/lib/gitlab/git_spec.rb b/spec/lib/gitlab/git_spec.rb
index cb07bbdbaaa..d6d12b84724 100644
--- a/spec/lib/gitlab/git_spec.rb
+++ b/spec/lib/gitlab/git_spec.rb
@@ -6,32 +6,6 @@ describe Gitlab::Git do
let(:committer_email) { 'user@example.org' }
let(:committer_name) { 'John Doe' }
- describe 'committer_hash' do
- it "returns a hash containing the given email and name" do
- committer_hash = described_class.committer_hash(email: committer_email, name: committer_name)
-
- expect(committer_hash[:email]).to eq(committer_email)
- expect(committer_hash[:name]).to eq(committer_name)
- expect(committer_hash[:time]).to be_a(Time)
- end
-
- context 'when email is nil' do
- it "returns nil" do
- committer_hash = described_class.committer_hash(email: nil, name: committer_name)
-
- expect(committer_hash).to be_nil
- end
- end
-
- context 'when name is nil' do
- it "returns nil" do
- committer_hash = described_class.committer_hash(email: committer_email, name: nil)
-
- expect(committer_hash).to be_nil
- end
- end
- end
-
describe '.ref_name' do
it 'ensure ref is a valid UTF-8 string' do
utf8_invalid_ref = Gitlab::Git::BRANCH_REF_PREFIX + "an_invalid_ref_\xE5"