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:
authorFrancisco Javier López <fjlopez@gitlab.com>2018-07-30 19:55:28 +0300
committerNick Thomas <nick@gitlab.com>2018-07-30 19:55:28 +0300
commit9a81550feddd907f8796362d604f63ed66ad80a2 (patch)
tree90d9c1deae0ee2c57b05fbe76ed96d13cf54a1af /spec/models
parent5b6553a0810f65d79c648aca9dba254644a293fb (diff)
Create GPG commit signature in bulk
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/project_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index b75ca91b007..ef4167a3912 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -3877,6 +3877,16 @@ describe Project do
end
end
+ context '#commits_by' do
+ let(:project) { create(:project, :repository) }
+ let(:commits) { project.repository.commits('HEAD', limit: 3).commits }
+ let(:commit_shas) { commits.map(&:id) }
+
+ it 'retrieves several commits from the repository by oid' do
+ expect(project.commits_by(oids: commit_shas)).to eq commits
+ end
+ end
+
def rugged_config
Gitlab::GitalyClient::StorageSettings.allow_disk_access do
project.repository.rugged.config