aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMike Alsup <malsup@gmail.com>2007-01-02 12:37:17 +0000
committerMike Alsup <malsup@gmail.com>2007-01-02 12:37:17 +0000
commit19b21ff10ae5f4800f367306cb589c5fe201eed3 (patch)
treeaa8f4e0a4aba5cd5f89f8137443d3d92687a46ec /src
parentb1e1d5d0c7c7eecee6e79f4530f4a7910641fd1c (diff)
downloadjquery-19b21ff10ae5f4800f367306cb589c5fe201eed3.tar.gz
jquery-19b21ff10ae5f4800f367306cb589c5fe201eed3.zip
remove test that belonged in ajaxTest.js
Diffstat (limited to 'src')
-rw-r--r--src/jquery/coreTest.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js
index dcb00abea..d1035cf64 100644
--- a/src/jquery/coreTest.js
+++ b/src/jquery/coreTest.js
@@ -427,16 +427,3 @@ test("removeAttr(String", function() {
ok( $('#mark').removeAttr("class")[0].className == "", "remove class" );
});
-test("evalScripts() with no script elements", function() {
- expect(2);
- stop();
- $.ajax({
- url: 'data/text.php?' + new Date().getTime(),
- success: function(data, status) {
- ok ( true, 'before evalScripts()');
- jQuery('#foo').html(data).evalScripts();
- ok ( true, 'after evalScripts()');
- start();
- }
- });
-});