TDD. Broken test case, need to fix xpath parser...
[jquery.git] / src / selector / selectorTest.js
index 07e4d50..2a00b5c 100644 (file)
@@ -90,7 +90,7 @@ test("multiple", function() {
 });
 
 test("child and adjacent", function() {
-       expect(22);
+       expect(18);
        t( "Child", "p > a", ["simon1","google","groups","mark","yahoo","simon"] );
        t( "Child", "p> a", ["simon1","google","groups","mark","yahoo","simon"] );
        t( "Child", "p >a", ["simon1","google","groups","mark","yahoo","simon"] );
@@ -107,15 +107,11 @@ test("child and adjacent", function() {
        
        t( "First Child", "p:first-child", ["firstp","sndp"] );
        t( "Nth Child", "p:nth-child(1)", ["firstp","sndp"] );
-       t( "First Child, XPath", "p[1]", ["firstp","sndp"] );
        
        t( "Last Child", "p:last-child", ["sap"] );
-       t( "Last Child, XPath", "p[3]", ["sap"] );
        
        t( "Nth-child", "#main form > *:nth-child(2)", ["text2"] );
-       t( "Nth-child, XPath", "#main form > *[2]", ["text2"] );
        t( "Nth-child", "#main form > :nth-child(2)", ["text2"] );
-       t( "Nth-child, XPath", "#main form > [2]", ["text2"] );
 });
 
 test("attributes", function() {
@@ -185,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"] );
@@ -197,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"] );