Amended failing Element#identify test.
This commit is contained in:
parent
a463068087
commit
2c03d1a837
|
@ -1,3 +1,5 @@
|
|||
* Amended failing Element#identify test.
|
||||
|
||||
* Refactor unit tests. Unit tests are now dynamically generated from a JavaScript test file and optional HTML, JS and CSS fixtures. [Tobie Langel]
|
||||
|
||||
* Fix issue where Safari improperly reports an element as a descendant of itself.
|
||||
|
|
|
@ -444,9 +444,11 @@ new Test.Unit.Runner({
|
|||
testElementIdentify: function() {
|
||||
var parent = $('identification');
|
||||
this.assertEqual(parent.down().identify(), 'predefined_id');
|
||||
this.assertEqual(parent.down(1).identify(), 'anonymous_element_1');
|
||||
this.assertEqual(parent.down(2).identify(), 'anonymous_element_2');
|
||||
this.assertEqual(parent.down(3).identify(), 'anonymous_element_4');
|
||||
this.assert(parent.down(1).identify().startsWith('anonymous_element_'));
|
||||
this.assert(parent.down(2).identify().startsWith('anonymous_element_'));
|
||||
this.assert(parent.down(3).identify().startsWith('anonymous_element_'));
|
||||
|
||||
this.assert(parent.down(3).id !== parent.down(2).id);
|
||||
},
|
||||
|
||||
testElementClassNameMethod: function() {
|
||||
|
|
Loading…
Reference in New Issue