本文整理汇总了Python中mozillians.users.models.UserProfile.get_index方法的典型用法代码示例。如果您正苦于以下问题:Python UserProfile.get_index方法的具体用法?Python UserProfile.get_index怎么用?Python UserProfile.get_index使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mozillians.users.models.UserProfile
的用法示例。
在下文中一共展示了UserProfile.get_index方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_removal_from_public_index
# 需要导入模块: from mozillians.users.models import UserProfile [as 别名]
# 或者: from mozillians.users.models.UserProfile import get_index [as 别名]
def test_removal_from_public_index(self):
"""Test that a user gets removed from public index if makes
profile mozillians only again.
"""
before = (S(UserProfile)
.indexes(UserProfile.get_index(public_index=True))
.count())
profile = self.mozillian2.userprofile
profile.privacy_full_name = MOZILLIANS
profile.save()
sleep(1)
after = (S(UserProfile)
.indexes(UserProfile.get_index(public_index=True))
.count())
eq_(after+1, before)
示例2: test_get_index
# 需要导入模块: from mozillians.users.models import UserProfile [as 别名]
# 或者: from mozillians.users.models.UserProfile import get_index [as 别名]
def test_get_index(self):
ok_(UserProfile.get_index(public_index=False), 'bar')
示例3: test_get_index_public
# 需要导入模块: from mozillians.users.models import UserProfile [as 别名]
# 或者: from mozillians.users.models.UserProfile import get_index [as 别名]
def test_get_index_public(self):
ok_(UserProfile.get_index(public_index=True), 'foo')