diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2016-11-22 16:57:12 +0000 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2016-11-22 16:57:12 +0000 |
commit | a713c9c12c919b2b9caec4fe6cf3ac64ff2746f2 (patch) | |
tree | f89fb349e75d8bd11e4270b0b3649a4ba4a57c8c /spec/lib | |
parent | dfb21e299ff999f5e65e092fdab8b9e9c0e5ac73 (diff) | |
parent | 3ff0575669ecda15c5e72bd2987715a998f97d82 (diff) | |
download | gitlab-ce-a713c9c12c919b2b9caec4fe6cf3ac64ff2746f2.tar.gz |
Merge branch 'zj-fix-trailing-whitespace-issue-create' into 'master'
Issue creation now accepts trailing whitespace
See merge request !7633
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/gitlab/chat_commands/issue_create_spec.rb | 9 |
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 |