diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js index 707a4bf7..06eb651b 100644 --- a/tests/unit/core/core.js +++ b/tests/unit/core/core.js @@ -121,5 +121,6 @@ test( "$.fn.getEncodedText should return the encoded value where $.fn.text doesn't", function() { same( $("#encoded").text(), "foo>"); same( $("#encoded").getEncodedText(), "foo>"); + same( $("#unencoded").getEncodedText(), "foo"); }); })(jQuery); \ No newline at end of file diff --git a/tests/unit/core/index.html b/tests/unit/core/index.html index b9e65b5a..3a10d79c 100644 --- a/tests/unit/core/index.html +++ b/tests/unit/core/index.html @@ -32,6 +32,7 @@