Sha256: ac3cc0100773d375b2d6582ef178395a0eaf7063a2b6d8a0d164d284024bb483
Contents?: true
Size: 608 Bytes
Versions: 5
Compression:
Stored size: 608 Bytes
Contents
# frozen_string_literal: true module ZephyrRuby class Client module Resource # Operations related to Automations module Automations def create_automation_custom(body) post '/automations/executions/custom', body end def create_automation_cucumber(body) post '/automations/executions/cucumber', body end def create_automation_junit(body) post '/automations/executions/junit', body end def get_zip_file(params = {}) get '/automations/testcases', params end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems