From a23e4361fc0221ca6132e962a5a8b2030bd1c390 Mon Sep 17 00:00:00 2001 From: Ariel Flesler Date: Tue, 1 Jul 2008 02:05:46 +0000 Subject: [PATCH] test runner: recloses #3102. Adding one test for $().eq("1") --- test/unit/core.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unit/core.js b/test/unit/core.js index dda7929..dbf23e7 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1575,13 +1575,15 @@ test("empty()", 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), 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(-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')" ); }); test("map()", function() { -- 1.7.10.4