ArrayAssert = Y.ArrayAssert;
name: 'Y.Node.ancestor',
'should return the parent node': function() {
},
'should return the same node': function() {
},
'should return the matching ancestor': function() {
};
},
'should return the matching ancestor via selector': function() {
},
'should return the matching ancestor (test self match)': function() {
};
},
'should return the matching ancestor (test self match) via selector': function() {
},
'should return the matching ancestor (test self not matched)': function() {
};
},
'should return the matching ancestor (test self not matched) via selector': function() {
},
'should stop when the stop function returns true': function() {
},
};
},
'should stop when the stop function returns true via selector': function() {
},
'should stop when the stop function returns true via selector as 2nd arg': function() {
},
'should find ancestor before stop': function() {
},
};
},
'should find ancestor before stop fn as 2nd arg': function() {
},
};
},
'should find ancestor before stop via selector': function() {
};
},
'should find ancestor before stop via selector as 2nd arg': function() {
};
},
'should find ancestor via selector before stop via selector': function() {
},
'should find ancestor when both test and stop return true': function() {
},
};
},
'should find ancestor when testFn and stop via selector both pass': function() {
};
},
'should find ancestor when test and stop via selector both pass': function() {
},
'should find TD ancestor': function() {
}
}));
name: 'Y.Node.ancestors',
'should return an array of one (documentElement)': function() {
},
'should include the starting node': function() {
},
'should omit the starting node': function() {
},
'should return the matching ancestors': function() {
};
},
'should return the matching ancestors via selector': function() {
},
'should return the matching ancestors (test self match)': function() {
};
},
'should return the matching ancestors (test self not matched)': function() {
};
},
'should stop when the stop function returns true': function() {
},
};
},
'should find ancestor before stop': function() {
},
};
],
},
'should find ancestor when both test and stop return true': function() {
},
};
},
'should stop when the stop function returns true as 2nd arg': function() {
},
};
}
}));
name: 'Y.Node.siblings',
setUp: function() {
},
tearDown: function() {
delete this._testNodes;
},
'should return all siblings': function() {
var children = this._testNodes;
},
'should return all LI siblings': function() {
var children = this._testNodes;
},
'should return all LI.bar siblings': function() {
var children = this._testNodes;
}
}));
name: 'Y.Node.previous',
setUp: function() {
},
'should return the correct previous element': function() {
}
}));