it("appends a child view to a descendant element", function() {
                $descendantElement().append("<div class='some_element' />");
                parentView.createChildView(childView).andAppendItTo(".descendant");
                expect($descendantElement().children().last()).$toBe(childView.$el);
            });