fixed typo in Function::bind[WithArgs] docs
[mootools/dkf.git] / Specs / Utilities / Selectors.js
blobcd52e5f15602fcb38603cb3936e61bac5334dff0
1 /*
2 Script: Selectors.js
3         Specs for Selectors.js
5 License:
6         MIT-style license.
7 */
9 describe('Utilities.Selectors', {
11         'should not return comment nodes': function(){
12                 var div = new Element('div');
13                 div.appendChild(document.createComment(''));
14                 value_of(div.getElements('*').length).should_be(0);
15         }
17 });