mirror of
https://github.com/jquery/jquery.git
synced 2024-12-09 08:04:24 +00:00
Basic unit tests; This patch relies on the 51 existing clone() tests
This commit is contained in:
parent
6458885881
commit
33a67ffa9d
@ -871,6 +871,18 @@ test("replaceAll(String|Element|Array<Element>|jQuery)", function() {
|
|||||||
ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
|
ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test("jQuery.clone() (#8017)", function() {
|
||||||
|
|
||||||
|
expect(2);
|
||||||
|
|
||||||
|
ok( jQuery.clone && jQuery.isFunction( jQuery.clone ) , "jQuery.clone() utility exists and is a function.");
|
||||||
|
|
||||||
|
var main = jQuery("#main")[0],
|
||||||
|
clone = jQuery.clone( main );
|
||||||
|
|
||||||
|
equals( main.children.length, clone.children.length, "Simple child length to ensure a large dom tree copies correctly" );
|
||||||
|
});
|
||||||
|
|
||||||
test("clone()", function() {
|
test("clone()", function() {
|
||||||
expect(37);
|
expect(37);
|
||||||
equals( 'This is a normal link: Yahoo', jQuery('#en').text(), 'Assert text for #en' );
|
equals( 'This is a normal link: Yahoo', jQuery('#en').text(), 'Assert text for #en' );
|
||||||
|
Loading…
Reference in New Issue
Block a user