summaryrefslogtreecommitdiff
path: root/tests/test_xpath.cpp
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-08-29 15:49:35 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-08-29 15:49:35 +0000
commit31b8e28997767d152e93df900adddde8f244ccdf (patch)
tree4faa3ea2a18d9fd7a0fa52014721f5534981b0ff /tests/test_xpath.cpp
parent998a534df7232c142521c57e7abd5e366ac3a8eb (diff)
tests: Improved document_order() coverage
git-svn-id: http://pugixml.googlecode.com/svn/trunk@693 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/test_xpath.cpp')
-rw-r--r--tests/test_xpath.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_xpath.cpp b/tests/test_xpath.cpp
index a2e8200..d8ebcb6 100644
--- a/tests/test_xpath.cpp
+++ b/tests/test_xpath.cpp
@@ -263,12 +263,6 @@ TEST(xpath_miscellaneous)
CHECK_XPATH_NODESET(xml_node(), STR("foo/@FOO/@bar"));
}
-TEST(xpath_document_order)
-{
- CHECK(xml_attribute().document_order() == 0);
- CHECK(xml_node().document_order() == 0);
-}
-
TEST_XML(xpath_context_node, "<node>5</node>")
{
CHECK_XPATH_NODESET(doc, STR("node")) % 2;