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