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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ruby/spec/lib/gitlab/git/commit_spec.rb')
-rw-r--r--ruby/spec/lib/gitlab/git/commit_spec.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/ruby/spec/lib/gitlab/git/commit_spec.rb b/ruby/spec/lib/gitlab/git/commit_spec.rb
index b46346353..217e226b9 100644
--- a/ruby/spec/lib/gitlab/git/commit_spec.rb
+++ b/ruby/spec/lib/gitlab/git/commit_spec.rb
@@ -168,29 +168,6 @@ describe Gitlab::Git::Commit do
end
end
- describe '#stats' do
- subject { commit.stats }
-
- describe '#additions' do
- subject { super().additions }
- it { is_expected.to eq(11) }
- end
-
- describe '#deletions' do
- subject { super().deletions }
- it { is_expected.to eq(6) }
- end
-
- describe '#total' do
- subject { super().total }
- it { is_expected.to eq(17) }
- end
- end
-
- describe '#has_zero_stats?' do
- it { expect(commit.has_zero_stats?).to eq(false) }
- end
-
describe '#to_hash' do
let(:hash) { commit.to_hash }
subject { hash }