Class: PlatformAPI::TestRun
- Inherits:
-
Object
- Object
- PlatformAPI::TestRun
- Defined in:
- lib/platform-api/client.rb
Overview
An execution or trial of one or more tests
Instance Method Summary collapse
-
#create(body = {}) ⇒ Object
Create a new test-run.
-
#info(test_run_id) ⇒ Object
Info for existing test-run.
-
#info_by_pipeline(pipeline_id, test_run_number) ⇒ Object
Info for existing test-run by Pipeline.
-
#initialize(client) ⇒ TestRun
constructor
A new instance of TestRun.
-
#list(pipeline_id) ⇒ Object
List existing test-runs for a pipeline.
-
#update(test_run_number, body = {}) ⇒ Object
Update a test-run's status.
Constructor Details
#initialize(client) ⇒ TestRun
Returns a new instance of TestRun.
3497 3498 3499 |
# File 'lib/platform-api/client.rb', line 3497 def initialize(client) @client = client end |
Instance Method Details
#create(body = {}) ⇒ Object
Create a new test-run.
3504 3505 3506 |
# File 'lib/platform-api/client.rb', line 3504 def create(body = {}) @client.test_run.create(body) end |
#info(test_run_id) ⇒ Object
Info for existing test-run.
3511 3512 3513 |
# File 'lib/platform-api/client.rb', line 3511 def info(test_run_id) @client.test_run.info(test_run_id) end |
#info_by_pipeline(pipeline_id, test_run_number) ⇒ Object
Info for existing test-run by Pipeline
3526 3527 3528 |
# File 'lib/platform-api/client.rb', line 3526 def info_by_pipeline(pipeline_id, test_run_number) @client.test_run.info_by_pipeline(pipeline_id, test_run_number) end |
#list(pipeline_id) ⇒ Object
List existing test-runs for a pipeline.
3518 3519 3520 |
# File 'lib/platform-api/client.rb', line 3518 def list(pipeline_id) @client.test_run.list(pipeline_id) end |
#update(test_run_number, body = {}) ⇒ Object
Update a test-run's status.
3534 3535 3536 |
# File 'lib/platform-api/client.rb', line 3534 def update(test_run_number, body = {}) @client.test_run.update(test_run_number, body) end |