We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a267080 commit 154fefcCopy full SHA for 154fefc
test/parse.jl
@@ -100,7 +100,7 @@ xb2 = XMLElement(rcs[4])
100
101
@test !has_attribute(xb2, "wrongattr")
102
@test is(attribute(xb2, "wrongattr"), nothing)
103
-@test_throws attribute(xb2, "wrongattr"; required=true)
+@test_throws LightXML.XMLAttributeNotFound attribute(xb2, "wrongattr"; required=true)
104
105
rces = get_elements_by_tagname(xroot, "book")
106
@test length(rces) == 2
run_tests.jl renamed to test/runtests.jl
@@ -1,7 +1,7 @@
1
tests = ["parse", "create", "cdata"]
2
3
for t in tests
4
- fpath = joinpath("test", "$t.jl")
+ fpath = "$t.jl"
5
@printf("running %s ...\n", fpath)
6
include(fpath)
7
end
0 commit comments