* Test removal of a grandchild that is the only child of an only child.
*/
public void testRemoveMultiStepGrandchildText() throws Exception {
ODOMElement root = (ODOMElement) factory.element("root");
ODOMElement child = (ODOMElement) factory.element("child");
ODOMText grandchild = (ODOMText) factory.text("grandchild");
ODOMXPath path = new ODOMXPath("child/text()");
root.addContent(child.addContent(grandchild));
ODOMObservable deleted = path.remove(root);