summaryrefslogtreecommitdiff
path: root/spec/models/commit_spec.rb
diff options
context:
space:
mode:
authorjubianchi <contact@jubianchi.fr>2014-09-17 19:08:35 +0200
committerjubianchi <contact@jubianchi.fr>2015-01-20 10:45:48 +0100
commitb21a2d821a4e16aba1609dfa1e01ba455e8ccd8f (patch)
treebc17b71af51eebc70df294422bc7acebf5e30506 /spec/models/commit_spec.rb
parent0af2a161fa55a4abd7f8248b25a7361b209ecc4a (diff)
downloadgitlab-ce-b21a2d821a4e16aba1609dfa1e01ba455e8ccd8f.tar.gz
Allow commit messages to close several issues at once (thanks @123Haynes
for his work and help)
Diffstat (limited to 'spec/models/commit_spec.rb')
-rw-r--r--spec/models/commit_spec.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/models/commit_spec.rb b/spec/models/commit_spec.rb
index a6ec44da4be..7a2a7a4ce9b 100644
--- a/spec/models/commit_spec.rb
+++ b/spec/models/commit_spec.rb
@@ -57,16 +57,12 @@ eos
let(:other_issue) { create :issue, project: other_project }
it 'detects issues that this commit is marked as closing' do
- stub_const('Gitlab::ClosingIssueExtractor::ISSUE_CLOSING_REGEX',
- /Fixes #\d+/)
commit.stub(safe_message: "Fixes ##{issue.iid}")
commit.closes_issues(project).should == [issue]
end
it 'does not detect issues from other projects' do
ext_ref = "#{other_project.path_with_namespace}##{other_issue.iid}"
- stub_const('Gitlab::ClosingIssueExtractor::ISSUE_CLOSING_REGEX',
- /^([Cc]loses|[Ff]ixes)/)
commit.stub(safe_message: "Fixes #{ext_ref}")
commit.closes_issues(project).should be_empty
end