test_that("format.xml_node prints attributes for root nodes", {
x <- read_xml("")
expect_equal(format(x), "")
})
test_that("format.xml_node prints namespaces for root nodes", {
x <- read_xml("")
expect_equal(format(x), "")
y <- read_xml("")
expect_equal(
format(y),
""
)
z <- read_xml(
""
)
expect_equal(
format(z),
""
)
})