Skip to content
Snippets Groups Projects
Unverified Commit f42bf66e authored by Zeger-Jan van de Weg's avatar Zeger-Jan van de Weg
Browse files

Add unit tests for Gitaly types

parent 5048c8d5
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -276,6 +276,7 @@ describe Gitlab::Git::Blob, seed_helper: true do
 
expect(blobs.count).to eq(1)
expect(blobs).to all( be_a(Gitlab::Git::Blob) )
expect(blobs).to be_an(Array)
end
 
it 'accepts blob IDs as a lazy enumerator' do
Loading
Loading
Loading
Loading
@@ -102,6 +102,10 @@ describe Gitlab::Git::Commit, seed_helper: true do
expect(described_class.find(repository, SeedRepo::Commit::ID)).to be_valid_commit
end
 
it "returns an array of parent ids" do
expect(described_class.find(repository, SeedRepo::Commit::ID).parent_ids).to be_an(Array)
end
it "should return valid commit for tag" do
expect(described_class.find(repository, 'v1.0.0').id).to eq('6f6d7e7ed97bb5f0054f2b1df789b39ca89b6ff9')
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment