class TestRescueAgent::TestRescueClient::TestRun

Attributes

created_at[R]
description[R]
failure_details[R]
file_run_id[R]
id[R]
location[R]
result[R]
test_id[R]
updated_at[R]

Public Class Methods

new(client, attributes={}) click to toggle source
# File lib/test_rescue_agent/test_rescue_client/test_run.rb, line 6
def initialize(client, attributes={})
  @client = client
  @id = attributes["id"]
  @file_run_id = attributes["file_run_id"]
  @test_id = attributes["test_id"]
  @description = attributes["description"]
  @location = attributes["location"]
  @result = attributes["result"]
  @failure_details = attributes["failure_details"]
  @created_at = attributes["created_at"]
  @updated_at = attributes["updated_at"]
end