- <g stroke="yellow" stroke-width="5">
- <line x2="100%" y1="2.5" y2="2.5" />
- <line x2="100%" y1="17.5" y2="17.5" />
- </g>
+ <path d="M0,2.5 H80 M0,17.5 H80" stroke="yellow" stroke-width="5" />
+ </svg>
+ HTML
+ assert_dom_equal expected, svg
+ end
+
+ def test_key_casing_with_integer_coords
+ svg = key_svg_tag("width" => 80, "height" => 20, "casing" => "yellow", "casing-width" => 2)
+ expected = <<~HTML.gsub(/\n\s*/, "")
+ <svg width="80" height="20">
+ <path d="M0,1 H80 M0,19 H80" stroke="yellow" stroke-width="2" />