diff options
author | Mike Alsup <malsup@gmail.com> | 2007-01-02 12:37:17 +0000 |
---|---|---|
committer | Mike Alsup <malsup@gmail.com> | 2007-01-02 12:37:17 +0000 |
commit | 19b21ff10ae5f4800f367306cb589c5fe201eed3 (patch) | |
tree | aa8f4e0a4aba5cd5f89f8137443d3d92687a46ec /src | |
parent | b1e1d5d0c7c7eecee6e79f4530f4a7910641fd1c (diff) | |
download | jquery-19b21ff10ae5f4800f367306cb589c5fe201eed3.tar.gz jquery-19b21ff10ae5f4800f367306cb589c5fe201eed3.zip |
remove test that belonged in ajaxTest.js
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery/coreTest.js | 13 |
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();
- }
- });
-});
|