Module: ZephyrRuby::Client::Resource::Automations

Included in:
ZephyrRuby::Client
Defined in:
lib/zephyr_ruby/resource/automations.rb

Overview

Operations related to Automations

Instance Method Summary collapse

Instance Method Details

#create_automation_cucumber(body) ⇒ Object



12
13
14
# File 'lib/zephyr_ruby/resource/automations.rb', line 12

def create_automation_cucumber(body)
  post '/automations/executions/cucumber', body
end

#create_automation_custom(body) ⇒ Object



8
9
10
# File 'lib/zephyr_ruby/resource/automations.rb', line 8

def create_automation_custom(body)
  post '/automations/executions/custom', body
end

#create_automation_junit(body) ⇒ Object



16
17
18
# File 'lib/zephyr_ruby/resource/automations.rb', line 16

def create_automation_junit(body)
  post '/automations/executions/junit', body
end

#get_zip_file(params = {}) ⇒ Object



20
21
22
# File 'lib/zephyr_ruby/resource/automations.rb', line 20

def get_zip_file(params = {})
  get '/automations/testcases', params
end