Sha256: d96fad5262cc2df70483163fceafbb746761ecf65f0d34a509bb60be371125bf
Contents?: true
Size: 523 Bytes
Versions: 39
Compression:
Stored size: 523 Bytes
Contents
# frozen_string_literal: true require 'nokogiri' module GitlabQuality module TestTooling module TestResults class JUnitTestResults < BaseTestResults def write # Ignore it for now end private def parse Nokogiri::XML.parse(File.read(path)) end def process results.xpath('//testcase').map do |test| GitlabQuality::TestTooling::TestResult::JUnitTestResult.new(test) end end end end end end
Version data entries
39 entries across 39 versions & 1 rubygems