git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
8660ea1
)
Adding in some more replaceWith tests for #5917.
author
Neeraj Singh
<neerajdotname@gmail.com>
Tue, 2 Feb 2010 02:53:31 +0000
(21:53 -0500)
committer
jeresig
<jeresig@gmail.com>
Tue, 2 Feb 2010 02:53:31 +0000
(21:53 -0500)
test/unit/manipulation.js
patch
|
blob
|
history
diff --git
a/test/unit/manipulation.js
b/test/unit/manipulation.js
index
41ce8bb
..
1e69340
100644
(file)
--- a/
test/unit/manipulation.js
+++ b/
test/unit/manipulation.js
@@
-736,7
+736,17
@@
test("replaceWith(Function)", function() {
});
reset();
});
reset();
-})
+});
+
+test("replaceWith(string) for more than one element", function(){
+ expect(3);
+
+ equals(jQuery('#foo p').length, 3, 'ensuring that test data has not changed');
+
+ jQuery('#foo p').replaceWith('<span>bar</span>');
+ equals(jQuery('#foo span').length, 3, 'verify that all the three original element have been replaced');
+ equals(jQuery('#foo p').length, 0, 'verify that all the three original element have been replaced');
+});
test("replaceAll(String|Element|Array<Element>|jQuery)", function() {
expect(10);
test("replaceAll(String|Element|Array<Element>|jQuery)", function() {
expect(10);