當前位置: 首頁>>代碼示例>>Python>>正文


Python Post.delete方法代碼示例

本文整理匯總了Python中forums.models.Post.delete方法的典型用法代碼示例。如果您正苦於以下問題:Python Post.delete方法的具體用法?Python Post.delete怎麽用?Python Post.delete使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在forums.models.Post的用法示例。


在下文中一共展示了Post.delete方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_delete_last_and_only_post_in_thread

# 需要導入模塊: from forums.models import Post [as 別名]
# 或者: from forums.models.Post import delete [as 別名]
 def test_delete_last_and_only_post_in_thread(self):
     """Deleting the only post in a thread should delete the thread"""
     forum = Forum.objects.get(pk=1)
     thread = Thread(title="test", forum=forum, creator_id=118533)
     thread.save()
     post = Post(thread=thread, content="test", author=thread.creator)
     post.save()
     eq_(1, thread.post_set.count())
     post.delete()
     eq_(0, Thread.uncached.filter(pk=thread.id).count())
開發者ID:AutomatedTester,項目名稱:kitsune,代碼行數:12,代碼來源:test_models.py

示例2: test_last_post_updated

# 需要導入模塊: from forums.models import Post [as 別名]
# 或者: from forums.models.Post import delete [as 別名]
    def test_last_post_updated(self):
        """Adding/Deleting the last post in a thread and forum should
        update the last_post field
        """
        thread = Thread.objects.get(pk=4)
        user = User.objects.get(pk=118533)

        # add a new post, then check that last_post is updated
        new_post = Post(thread=thread, content="test", author=user)
        new_post.save()
        forum = Forum.objects.get(pk=1)
        thread = Thread.objects.get(pk=thread.id)
        eq_(forum.last_post.id, new_post.id)
        eq_(thread.last_post.id, new_post.id)

        # delete the new post, then check that last_post is updated
        new_post.delete()
        forum = Forum.objects.get(pk=1)
        thread = Thread.objects.get(pk=thread.id)
        eq_(forum.last_post.id, 25)
        eq_(thread.last_post.id, 25)
開發者ID:AutomatedTester,項目名稱:kitsune,代碼行數:23,代碼來源:test_models.py


注:本文中的forums.models.Post.delete方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。