test runner: recloses #3102. Adding one test for $().eq("1")
This commit is contained in:
parent
96e4006b74
commit
a23e4361fc
|
@ -1575,13 +1575,15 @@ test("empty()", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("slice()", function() {
|
test("slice()", function() {
|
||||||
expect(5);
|
expect(6);
|
||||||
isSet( jQuery("#ap a").slice(1,2), q("groups"), "slice(1,2)" );
|
isSet( jQuery("#ap a").slice(1,2), q("groups"), "slice(1,2)" );
|
||||||
isSet( jQuery("#ap a").slice(1), q("groups", "anchor1", "mark"), "slice(1)" );
|
isSet( jQuery("#ap a").slice(1), q("groups", "anchor1", "mark"), "slice(1)" );
|
||||||
isSet( jQuery("#ap a").slice(0,3), q("google", "groups", "anchor1"), "slice(0,3)" );
|
isSet( jQuery("#ap a").slice(0,3), q("google", "groups", "anchor1"), "slice(0,3)" );
|
||||||
isSet( jQuery("#ap a").slice(-1), q("mark"), "slice(-1)" );
|
isSet( jQuery("#ap a").slice(-1), q("mark"), "slice(-1)" );
|
||||||
|
|
||||||
isSet( jQuery("#ap a").eq(1), q("groups"), "eq(1)" );
|
isSet( jQuery("#ap a").eq(1), q("groups"), "eq(1)" );
|
||||||
|
|
||||||
|
isSet( jQuery("#ap a").eq('1'), q("groups"), "eq('1')" );
|
||||||
});
|
});
|
||||||
|
|
||||||
test("map()", function() {
|
test("map()", function() {
|
||||||
|
|
Loading…
Reference in a new issue