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:
authorZ.J. van de Weg <git@zjvandeweg.nl>2016-11-21 22:48:18 +0300
committerZ.J. van de Weg <git@zjvandeweg.nl>2016-11-22 10:48:17 +0300
commit3ff0575669ecda15c5e72bd2987715a998f97d82 (patch)
tree3ab138ae60e7e61554bab6b8144147650436ab74 /spec/lib/gitlab
parent60c2d5907226be8cca4b911cf5a85779ab587dd2 (diff)
Issue creation now accepts trailing whitespace
Diffstat (limited to 'spec/lib/gitlab')
-rw-r--r--spec/lib/gitlab/chat_commands/issue_create_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/lib/gitlab/chat_commands/issue_create_spec.rb b/spec/lib/gitlab/chat_commands/issue_create_spec.rb
index df0c317ccea..dd07cff9243 100644
--- a/spec/lib/gitlab/chat_commands/issue_create_spec.rb
+++ b/spec/lib/gitlab/chat_commands/issue_create_spec.rb
@@ -32,6 +32,15 @@ describe Gitlab::ChatCommands::IssueCreate, service: true do
expect(Issue.last.description).to eq(description)
end
end
+
+ context "with more newlines between the title and the description" do
+ let(:description) { "Surfin bird" }
+ let(:regex_match) { described_class.match("issue create bird is the word\n\n#{description}\n") }
+
+ it 'creates the issue' do
+ expect { subject }.to change { project.issues.count }.by(1)
+ end
+ end
end
describe '.match' do