tl-api-client 0.1.0 → 0.1.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 +4 -4
- data/lib/testlink/client/version.rb +1 -1
- data/lib/testlink/client.rb +9 -2
- 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: da194dbebc79e9af007840f3a33e177282d0a6b8
|
4
|
+
data.tar.gz: c4ca66129143b4136d9ff116d6e2a479546727d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0baa55154914d9b842e325c1d2e6451a3c1448a0b5ffeba03354bdb9bfe5b6180df7cad1c88d5ee0e58b3bebe635f80068c5392b75958d3f49cda53b779dfe27
|
7
|
+
data.tar.gz: b06df37e2de54829493c812259e5bb34a5a674beb053e60438a075e21f14ab70c0e38a64e3d07fc886fc32c05ad8c545282d56fa871aa8756a6b6e7a5334341d
|
data/lib/testlink/client.rb
CHANGED
@@ -61,13 +61,20 @@ module Testlink
|
|
61
61
|
end
|
62
62
|
|
63
63
|
|
64
|
-
def get_project_test_plans
|
64
|
+
def get_project_test_plans tprojectid
|
65
65
|
|
66
|
-
input = { "testprojectid" =>
|
66
|
+
input = { "testprojectid" => tprojectid }
|
67
67
|
get_result "tl.getProjectTestPlans", input
|
68
68
|
end
|
69
69
|
|
70
70
|
|
71
|
+
def get_project_keywords tprojectid
|
72
|
+
|
73
|
+
input = { "testprojectid" => tprojectid }
|
74
|
+
get_result "tl.getProjectKeywords", input
|
75
|
+
end
|
76
|
+
|
77
|
+
|
71
78
|
def get_test_case_keywords tcid = nil, tcexternalid = nil
|
72
79
|
|
73
80
|
input = { "testcaseid" => tcid,
|