mustard_client 0.1.48 → 0.1.49
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 +4 -4
- data/lib/MustardClient/executions.rb +3 -1
- data/lib/MustardClient/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90b27a7e50c0fdc7d6e357d3a92b32122e1a951d
|
4
|
+
data.tar.gz: 1a34bbb719bbbb78b2d20183443f97efff0d76cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d6ff8d93ff332f53ba621eb1c7cf3c7d857396e0373d1c862ae445eb9bd798ce204cfca7cb4082a6baf87e257a598a679b6923b3ff5a5acfe97825b27edc48c
|
7
|
+
data.tar.gz: 178177f77cc6d486d75aabbcbb1ce9743bb7bd46cc3b4c4974389f8c8d88ca71d2af6bfc2519251425852e01b8d2dc58bc0c586235ea3d3ceddd579b9cc4a4d3
|
@@ -135,7 +135,7 @@ module MustardClient
|
|
135
135
|
|
136
136
|
def next_test execution_id, keywords: []
|
137
137
|
|
138
|
-
keywords =
|
138
|
+
keywords = [keywords] unless keyword.kind_of? Array
|
139
139
|
|
140
140
|
command = {}
|
141
141
|
command[:method] = :get
|
@@ -155,6 +155,8 @@ module MustardClient
|
|
155
155
|
|
156
156
|
def incomplete_tests execution_id, keywords: []
|
157
157
|
|
158
|
+
keywords = [keywords] unless keyword.kind_of? Array
|
159
|
+
|
158
160
|
keywords = parse_keywords( keywords ) unless keywords.blank?
|
159
161
|
|
160
162
|
command = {}
|