speedflow-plugin-jira 0.3.1 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b042e45b8c42d7235a406a86e1a433ac91eac102
|
4
|
+
data.tar.gz: 7ea13622d30eae087545029831e8897deeb4a0c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b6f662df1197c0d6e7380cd4b1f760ffee5d1746f611ff35012d323102ee7e02c96777c7a5504647c84fbd69ce77d5e957239e90cd57b5be6ec9aab140e26dc
|
7
|
+
data.tar.gz: 654d6ba3d2deb53be9a92f35dbac0fa7a1336843630070c73cb85e58dbfceeca661f285f89a6af42da5556ab847c5e66912dd2ad4833e72439e12dda72274208
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe Speedflow::Plugin::Jira::Client do
|
4
|
-
let(:config_site) { 'https://xxx.atlassian.net' }
|
4
|
+
let(:config_site) { 'https://xxx.atlassian.net/' }
|
5
5
|
let(:args) do
|
6
6
|
title = { 'value' => 'test' }
|
7
7
|
assignee = { 'default' => 'julien.breux' }
|
@@ -99,7 +99,7 @@ describe Speedflow::Plugin::Jira::Client do
|
|
99
99
|
|
100
100
|
expected_hash = {
|
101
101
|
'issue' => { 'key' => 'T-1', 'summary' => 'Test',
|
102
|
-
'url' => "#{config_site}
|
102
|
+
'url' => "#{config_site}browse/T-1" } }
|
103
103
|
expect(client.issue_output_format(issue))
|
104
104
|
.to eq expected_hash
|
105
105
|
end
|
@@ -132,7 +132,7 @@ describe Speedflow::Plugin::Jira::Client do
|
|
132
132
|
context_path: '',
|
133
133
|
password: '',
|
134
134
|
read_timeout: 120,
|
135
|
-
site: 'https://xxx.atlassian.net',
|
135
|
+
site: 'https://xxx.atlassian.net/',
|
136
136
|
username: ''
|
137
137
|
}
|
138
138
|
|