class RSpecJUnitFormatter
def xml_dump_output(example)
def xml_dump_output(example) if (stdout = stdout_for(example)) && !stdout.empty? output << %{<system-out>} output << escape(stdout) output << %{</system-out>} end if (stderr = stderr_for(example)) && !stderr.empty? output << %{<system-err>} output << escape(stderr) output << %{</system-err>} end end