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

pulibrary / tigerdata-app / 3e38a84e-4de6-458b-9255-50c2c34d151a

12 Dec 2025 04:35PM UTC coverage: 85.53% (-5.6%) from 91.135%
3e38a84e-4de6-458b-9255-50c2c34d151a

push

circleci

web-flow
Fixing widths via align-self stretch (#2302)

I wasn't able to make the wizard completely correct

## Before the blue-box change
<img width="1076" height="1013" alt="Screenshot 2025-12-12 at 10 07
38 AM"
src="https://github.com/user-attachments/assets/b991ab7b-b63c-48c5-a2fa-820f378f3415"
/>

## after blue-box change
<img width="1070" height="1214" alt="Screenshot 2025-12-12 at 9 59
40 AM"
src="https://github.com/user-attachments/assets/b31b891b-8873-4312-82e9-559e9db072a4"
/>

## before wizard changes
<img width="1074" height="1226" alt="Screenshot 2025-12-12 at 9 56
37 AM"
src="https://github.com/user-attachments/assets/77cede9a-29a1-42a3-9826-0d993b0fb98c"
/>


## after wizard changes
<img width="1078" height="1222" alt="Screenshot 2025-12-12 at 9 57
01 AM"
src="https://github.com/user-attachments/assets/94f262b8-1737-4e5c-8139-0a199260559c"
/>

2790 of 3262 relevant lines covered (85.53%)

467.73 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
3✔
3
  XML_VERSION = "1.0"
3✔
4

5
  attr_reader :document, :node
3✔
6

7
  # @return [String]
8
  def xml_version
3✔
9
    XML_VERSION
694✔
10
  end
11

12
  # @return [Array<String>]
13
  def xml_document_args
3✔
14
    [
15
      xml_version
694✔
16
    ]
17
  end
18

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

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

28
    @node = document.root
2✔
29
  end
30

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

35
    @node = nil
3,842✔
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