Method: Mu::Command::Cmd_ddt#cmd_csv_export

Defined in:
lib/mu/command/cmd_ddt.rb

#cmd_csv_export(argv) ⇒ Object

exports a testset from Mu Studio to a csv file

* argv = command-line arguments, requires a uuid (-u) argument that is the uuid of a testset on the Mu


257
258
259
260
261
262
263
264
265
# File 'lib/mu/command/cmd_ddt.rb', line 257

def cmd_csv_export argv
  setup argv
  msg @api.new_session
  uuid = @hash['uuid']
  response = @api.csv_export(uuid)
  @api.close_session
  msg response
  return response
end