96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# File 'lib/mutx/results/result.rb', line 96
def result_data_structure
{
"_id" => id,
"task" => @task,
"execution_name" => execution_name,
"command" => command,
"application" => application,
"custom_params" => custom_params,
"mutx_command" => mutx_command,
"started_message" => started_message,
"mutx_report_file_name" => mutx_report_file_name,
"html_report" => html_report,
"started_at" => started_at,
"finished_at" => finished_at,
"status" => status,
"timeout" => timeout,
"summary" => summary,
"results_details" => results_details,
"console_output_file_name" => console_output_file_name,
"console_output" => console_output,
"git_log" => git_log,
"saw" => saw,
"pid" => pid,
"last_check_time" => last_check_time,
"execution_data" => execution_data,
"configuration_values" => configuration_values,
"regex" => regex,
"value_for_regex" => value_for_regex,
"result_value" => result_value,
"notified" => notified,
"file_attached" => file_attached
}
end
|