zephyr_ruby 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a3b3bab61cc2f4029d887a6b628e0efba253fa675fed3bee61d4fbdb8b68911
|
4
|
+
data.tar.gz: 6718dd0d341673673b00ac9c0089eef7f2eecdd13202250b21d52d4115827b3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a0a806a2d95fa89f4cb074dbbc1bdfd12e0c7f04eb83f0f5a36734d084f62f427000e6513da7775653be66c395872aa5a689371062040d17a0b3e67892da83d
|
7
|
+
data.tar.gz: e6335fd4cb30b53b0be7fea62c08211392b7d9c6a8afec71fbba80106a987861faad286a2f6510df72e0d0d9ad3e07c8f2601179ed8e2618c943fb37f5e4dd69
|
@@ -5,16 +5,16 @@ module ZephyrRuby
|
|
5
5
|
module Resource
|
6
6
|
# Operations related to Automations
|
7
7
|
module Automations
|
8
|
-
def create_automation_custom(body)
|
9
|
-
post '/automations/executions/custom', body
|
8
|
+
def create_automation_custom(body, file_path = nil)
|
9
|
+
post '/automations/executions/custom', body, file_path
|
10
10
|
end
|
11
11
|
|
12
|
-
def create_automation_cucumber(body)
|
13
|
-
post '/automations/executions/cucumber', body
|
12
|
+
def create_automation_cucumber(body, file_path = nil)
|
13
|
+
post '/automations/executions/cucumber', body, file_path
|
14
14
|
end
|
15
15
|
|
16
|
-
def create_automation_junit(body)
|
17
|
-
post '/automations/executions/junit', body
|
16
|
+
def create_automation_junit(body, file_path = nil)
|
17
|
+
post '/automations/executions/junit', body, file_path
|
18
18
|
end
|
19
19
|
|
20
20
|
def get_zip_file(params = {})
|
@@ -41,10 +41,6 @@ module ZephyrRuby
|
|
41
41
|
post "/testexecutions/#{test_execution_id}/teststeps/sync"
|
42
42
|
end
|
43
43
|
|
44
|
-
def get_test_execution_links(test_execution_id)
|
45
|
-
get "/testexecutions/#{test_execution_id}/links"
|
46
|
-
end
|
47
|
-
|
48
44
|
def create_test_execution_issue_link(test_execution_id, body)
|
49
45
|
post "/testexecutions/#{test_execution_id}/links/issues", body
|
50
46
|
end
|
data/lib/zephyr_ruby/version.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zephyr_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Davis
|
@@ -101,6 +101,7 @@ files:
|
|
101
101
|
- lib/zephyr_ruby/version.rb
|
102
102
|
- sig/zephyr_ruby.rbs
|
103
103
|
- zephyr_ruby-0.4.0.gem
|
104
|
+
- zephyr_ruby-0.5.0.gem
|
104
105
|
homepage: https://github.com/cdavis-personal/zephyr_ruby
|
105
106
|
licenses:
|
106
107
|
- MIT
|