def test_sign_with_parent__calls_to_xml(self, mock_validate):
     entity = DiasporaComment()
     with patch.object(entity, "to_xml") as mock_to_xml:
         entity.sign_with_parent(get_dummy_private_key())
         mock_to_xml.assert_called_once_with()