aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorCorey Jewett <cj@syntheticplayground.com>2007-04-30 17:31:51 +0000
committerCorey Jewett <cj@syntheticplayground.com>2007-04-30 17:31:51 +0000
commit2e448273f5674958fcb05073791dadd92fa8bcd0 (patch)
tree0c8ddd471027ba146f334a8e4f86c06fe306ccee /src
parent672090463c893216e490b1e7a5bd44c816238021 (diff)
downloadjquery-2e448273f5674958fcb05073791dadd92fa8bcd0.tar.gz
jquery-2e448273f5674958fcb05073791dadd92fa8bcd0.zip
TDD. Broken test case, need to fix xpath parser...
Diffstat (limited to 'src')
-rw-r--r--src/selector/selectorTest.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js
index 939edbe0d..2a00b5c79 100644
--- a/src/selector/selectorTest.js
+++ b/src/selector/selectorTest.js
@@ -181,7 +181,7 @@ test("pseudo (:) selectors", function() {
});
test("basic xpath", function() {
- expect(17);
+ expect(18);
ok( jQuery.find("//*").length >= 30, "All Elements (//*)" );
t( "All Div Elements", "//div", ["main","foo"] );
t( "Absolute Path", "/html/body", ["body"] );
@@ -193,6 +193,7 @@ test("basic xpath", function() {
t( "Attribute Exists", "//a[@title]", ["google"] );
t( "Attribute Equals", "//a[@rel='bookmark']", ["simon1"] );
t( "Attribute RegExp", "//a[@rel=~/BooKmaRk/i]", ["simon1"] );
+ t( "Attribute RegExp w/enclosed braces", "//a[@rel=~/B[okm]+aRk/i]", ["simon1"] );
t( "Attribute Inverse RegExp", "//a[@id!~/mon/]", ["google","groups","anchor1","mark","yahoo","anchor2"] );
t( "Parent Axis", "//p/..", ["main","foo"] );
t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","lengthtest","sndp","en","sap"] );