summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/git/tree_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/git/tree_spec.rb')
-rw-r--r--spec/lib/gitlab/git/tree_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/lib/gitlab/git/tree_spec.rb b/spec/lib/gitlab/git/tree_spec.rb
index 5ef964ac3c1..c44d7e44751 100644
--- a/spec/lib/gitlab/git/tree_spec.rb
+++ b/spec/lib/gitlab/git/tree_spec.rb
@@ -10,9 +10,9 @@ RSpec.describe Gitlab::Git::Tree, :seed_helper do
it { expect(tree).to be_kind_of Array }
it { expect(tree.empty?).to be_falsey }
- it { expect(tree.select(&:dir?).size).to eq(2) }
- it { expect(tree.select(&:file?).size).to eq(10) }
- it { expect(tree.select(&:submodule?).size).to eq(2) }
+ it { expect(tree.count(&:dir?)).to eq(2) }
+ it { expect(tree.count(&:file?)).to eq(10) }
+ it { expect(tree.count(&:submodule?)).to eq(2) }
it 'returns an empty array when called with an invalid ref' do
expect(described_class.where(repository, 'foobar-does-not-exist')).to eq([])