diff options
Diffstat (limited to 'tests/test_xpath_parse.cpp')
-rw-r--r-- | tests/test_xpath_parse.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_xpath_parse.cpp b/tests/test_xpath_parse.cpp index 6d9a4e7..5eb23b8 100644 --- a/tests/test_xpath_parse.cpp +++ b/tests/test_xpath_parse.cpp @@ -29,10 +29,14 @@ TEST(xpath_number_parse) TEST(xpath_number_error)
{
- xml_node c;
CHECK_XPATH_FAIL("123a");
CHECK_XPATH_FAIL("123.a");
CHECK_XPATH_FAIL(".123a");
}
+TEST(xpath_variables)
+{
+ CHECK_XPATH_FAIL("$var"); // not implemented
+}
+
#endif
|