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/branch_spec.rb')
-rw-r--r--ruby/spec/lib/gitlab/git/branch_spec.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/ruby/spec/lib/gitlab/git/branch_spec.rb b/ruby/spec/lib/gitlab/git/branch_spec.rb
deleted file mode 100644
index 3381fc230..000000000
--- a/ruby/spec/lib/gitlab/git/branch_spec.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-require "spec_helper"
-
-describe Gitlab::Git::Branch do
- include TestRepo
-
- let(:repository) { gitlab_git_from_gitaly(git_test_repo_read_only) }
-
- subject { repository.branches }
-
- it { is_expected.to be_an(Array) }
-
- describe '#size' do
- subject { super().size }
-
- it { is_expected.to eq(SeedRepo::Repo::BRANCHES.size) }
- end
-
- it { expect(repository.branches.size).to eq(SeedRepo::Repo::BRANCHES.size) }
-end