• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pulibrary / tigerdata-app / 27af341a-ce79-4e9a-88a9-edbf642f4ed4

24 Oct 2025 12:14PM UTC coverage: 91.202% (+0.02%) from 91.178%
27af341a-ce79-4e9a-88a9-edbf642f4ed4

push

circleci

web-flow
Show uid matches before name matches (#2091)

Also display the Given Name Family Name in order instead of utilizing
the display name. It seems the display name is in Last Name, First Name
order some times.

fixes #2077 
refs #2020

## Before the change
<img width="919" height="1074" alt="Screenshot 2025-10-23 at 10 36
34 AM"
src="https://github.com/user-attachments/assets/9bacea52-5122-4e42-b1c5-78e381e653a4"
/>

## after the change

<img width="952" height="1085" alt="Screenshot 2025-10-23 at 1 37 23 PM"
src="https://github.com/user-attachments/assets/86ca1cc0-5868-43f9-a2a8-28c34a0683c5"
/>

2 of 18 new or added lines in 2 files covered. (11.11%)

183 existing lines in 22 files now uncovered.

2747 of 3012 relevant lines covered (91.2%)

749.07 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/app/services/xml_node_builder.rb
1
# frozen_string_literal: true
2
class XmlNodeBuilder
5✔
3
  XML_VERSION = "1.0"
5✔
4

5
  attr_reader :document, :node
5✔
6

7
  # @return [String]
8
  def xml_version
5✔
9
    XML_VERSION
1,452✔
10
  end
11

12
  # @return [Array<String>]
13
  def xml_document_args
5✔
14
    [
15
      xml_version
1,452✔
16
    ]
17
  end
18

19
  # @return [Nokogiri::XML::Document]
20
  def build_document
5✔
21
    Nokogiri::XML::Document.new(*xml_document_args)
1,452✔
22
  end
23

24
  # @return [Nokogiri::XML::Element]
25
  def build
5✔
UNCOV
26
    return node if node.present?
4✔
27

UNCOV
28
    @node = document.root
4✔
29
  end
30

31
  # @param [Nokogiri::XML::Document] document
32
  def initialize(document: nil)
5✔
33
    @document = document || build_document
8,056✔
34

35
    @node = nil
8,056✔
36
  end
37
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc