Skip to content

Commit

Permalink
getTestCasesForTestSuite example - wrong argument detail #23
Browse files Browse the repository at this point in the history
  • Loading branch information
Luiko Czub committed Jul 1, 2014
1 parent f65eaa8 commit 25a9610
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Changes in TestLink-API-Python-client Source Distribution
TestLink-API-Python-client UNDER DEVELOP v0.4.9
-----------------------------------------------------------

implement 1.9.10 api change - getTestCasesForTestSuite #23 - under construction
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- parameter keywords

implement 1.9.10 api change - reportTCResult #24
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion example/TestLinkExampleCustomFields.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
print "getTestSuiteByID", newTestSuite

response = myTestLink.getTestCasesForTestSuite(newTestSuiteID_B,
deep=True, detail='full')
deep=True, details='full', getkeywords=True)
print "getTestCasesForTestSuite", response

# get informationen - TestCase_B
Expand Down
4 changes: 2 additions & 2 deletions example/TestLinkExampleGenericApi.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,10 @@
response = myTestLink.getTestSuitesForTestSuite(newTestSuiteID_A)
print "getTestSuitesForTestSuite", response
response = myTestLink.getTestCasesForTestSuite(newTestSuiteID_A,
deep=True, detail='full')
deep=True, details='full')
print "getTestCasesForTestSuite", response
response = myTestLink.getTestCasesForTestSuite(newTestSuiteID_B,
deep=False, detail='only_id')
deep=False, details='only_id')
print "getTestCasesForTestSuite", response

# get informationen - TestCase_B
Expand Down
2 changes: 1 addition & 1 deletion src/testlink/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
#
# ------------------------------------------------------------------------

VERSION = '0.4.9-dev-24'
VERSION = '0.4.9-dev-23'

0 comments on commit 25a9610

Please sign in to comment.