mustard_client 0.1.49 → 0.1.50
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 +2 -4
- 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: 9c9b151d2dc2f95e21d951d8fa7d2379440a52a7
|
4
|
+
data.tar.gz: 24747b0fc72ba3ca611f0953d04f080ae027cf2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6c3447d525f8b0940e1ae4e7f8ac7fbde27ceb56e62624908b20674502b929e8de39dba178deecbcdfda2d0be1ab4f9d121912fec1f26880bf881bba8e30c19
|
7
|
+
data.tar.gz: fa5d8556b7b47e40c623ef458b35e8b37e9cbc279714a7d900b2e3fe5e572adc2c4819e4bd008bc37d5f90e809b5056f456a6f105a5fc1df7c910383108efe53
|
@@ -135,7 +135,7 @@ module MustardClient
|
|
135
135
|
|
136
136
|
def next_test execution_id, keywords: []
|
137
137
|
|
138
|
-
keywords = [keywords] unless
|
138
|
+
keywords = [keywords] unless keywords.kind_of? Array
|
139
139
|
|
140
140
|
command = {}
|
141
141
|
command[:method] = :get
|
@@ -155,9 +155,7 @@ module MustardClient
|
|
155
155
|
|
156
156
|
def incomplete_tests execution_id, keywords: []
|
157
157
|
|
158
|
-
keywords = [keywords] unless
|
159
|
-
|
160
|
-
keywords = parse_keywords( keywords ) unless keywords.blank?
|
158
|
+
keywords = [keywords] unless keywords.kind_of? Array
|
161
159
|
|
162
160
|
command = {}
|
163
161
|
command[:method] = :get
|