module RainforestQA::Modules::Runs
Public Instance Methods
create_run(attributes ={})
click to toggle source
# File lib/rainforestqa/modules/runs.rb, line 12 def create_run(attributes ={}) perform(:post, "runs", attributes) end
delete_run(id, options = {})
click to toggle source
# File lib/rainforestqa/modules/runs.rb, line 20 def delete_run(id, options = {}) perform(:delete, "runs/#{id}", options) end
run_result(run_id, test_id, options = {})
click to toggle source
# File lib/rainforestqa/modules/runs.rb, line 24 def run_result(run_id, test_id, options = {}) perform(:get, "runs/#{run_id}/tests/#{test_id}", options) end
run_status(id, options = {})
click to toggle source
# File lib/rainforestqa/modules/runs.rb, line 16 def run_status(id, options = {}) perform(:get, "runs/#{id}", options) end
runs(options = {})
click to toggle source
# File lib/rainforestqa/modules/runs.rb, line 8 def runs(options = {}) perform(:get, "runs", options) end