-
Notifications
You must be signed in to change notification settings - Fork 0
Test Case
Fedor Barannik edited this page May 23, 2017
·
3 revisions
Creates a new Test Case.
Full hash
TODO: add the hash
client = TMJ::Client.new
client.TestCase.create({ "projectKey": 'JQA',
"name": 'Ensure the axial-flow pump is enabled' })
client = TMJ::Client.new
client.TestCase.update('JQA-T1234', {"name": "Ensure the axial-flow pump is enabled"})
client = TMJ::Client.new
client.TestCase.delete('JQA-T1234')
client = TMJ::Client.new
client.TestCase.find('JQA-T1234')
client = TMJ::Client.new
client.TestCase.find('projectKey = "JQA"')
- [Contribution guide]