当前位置: 首页>>代码示例>>Python>>正文


Python User.reset_cache方法代码示例

本文整理汇总了Python中social.tests.models.User.reset_cache方法的典型用法代码示例。如果您正苦于以下问题:Python User.reset_cache方法的具体用法?Python User.reset_cache怎么用?Python User.reset_cache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在social.tests.models.User的用法示例。


在下文中一共展示了User.reset_cache方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: tearDown

# 需要导入模块: from social.tests.models import User [as 别名]
# 或者: from social.tests.models.User import reset_cache [as 别名]
 def tearDown(self):
     self.strategy = None
     User.reset_cache()
     TestUserSocialAuth.reset_cache()
     TestNonce.reset_cache()
     TestAssociation.reset_cache()
     HTTPretty.disable()
开发者ID:PublicInMotionGmbH,项目名称:python-social-auth,代码行数:9,代码来源:open_id.py

示例2: setUp

# 需要导入模块: from social.tests.models import User [as 别名]
# 或者: from social.tests.models.User import reset_cache [as 别名]
 def setUp(self):
     HTTPretty.enable()
     User.reset_cache()
     TestUserSocialAuth.reset_cache()
     TestNonce.reset_cache()
     TestAssociation.reset_cache()
     self.backend = module_member('social.backends.github.GithubOAuth2')
     self.strategy = TestStrategy(self.backend, TestStorage)
     self.user = None
开发者ID:0077cc,项目名称:python-social-auth,代码行数:11,代码来源:actions.py

示例3: tearDown

# 需要导入模块: from social.tests.models import User [as 别名]
# 或者: from social.tests.models.User import reset_cache [as 别名]
 def tearDown(self):
     self.backend = None
     self.strategy = None
     self.user = None
     User.reset_cache()
     User.set_active(True)
     TestUserSocialAuth.reset_cache()
     TestNonce.reset_cache()
     TestAssociation.reset_cache()
     HTTPretty.disable()
开发者ID:0077cc,项目名称:python-social-auth,代码行数:12,代码来源:actions.py

示例4: setUp

# 需要导入模块: from social.tests.models import User [as 别名]
# 或者: from social.tests.models.User import reset_cache [as 别名]
 def setUp(self):
     HTTPretty.enable()
     User.reset_cache()
     TestUserSocialAuth.reset_cache()
     TestNonce.reset_cache()
     TestAssociation.reset_cache()
     Backend = module_member("social.backends.github.GithubOAuth2")
     self.strategy = self.strategy or TestStrategy(TestStorage)
     self.backend = Backend(self.strategy, redirect_uri="/complete/github")
     self.user = None
开发者ID:humaneu,项目名称:flask_app,代码行数:12,代码来源:actions.py

示例5: tearDown

# 需要导入模块: from social.tests.models import User [as 别名]
# 或者: from social.tests.models.User import reset_cache [as 别名]
 def tearDown(self):
     HTTPretty.disable()
     self.backend = None
     self.strategy = None
     self.name = None
     self.complete_url = None
     User.reset_cache()
     TestUserSocialAuth.reset_cache()
     TestNonce.reset_cache()
     TestAssociation.reset_cache()
     TestCode.reset_cache()
开发者ID:relsi,项目名称:w2p-social-auth,代码行数:13,代码来源:base.py

示例6: setUp

# 需要导入模块: from social.tests.models import User [as 别名]
# 或者: from social.tests.models.User import reset_cache [as 别名]
 def setUp(self):
     HTTPretty.enable()
     self.backend = module_member(self.backend_path)
     self.strategy = TestStrategy(self.backend, TestStorage)
     self.name = self.backend.name.upper().replace("-", "_")
     self.complete_url = self.strategy.build_absolute_uri(self.raw_complete_url.format(self.backend.name))
     backends = (self.backend_path, "social.tests.backends.test_broken.BrokenBackendAuth")
     self.strategy.set_settings({"SOCIAL_AUTH_AUTHENTICATION_BACKENDS": backends})
     self.strategy.set_settings(self.extra_settings())
     # Force backends loading to trash PSA cache
     load_backends(backends, force_load=True)
     User.reset_cache()
     TestUserSocialAuth.reset_cache()
     TestNonce.reset_cache()
     TestAssociation.reset_cache()
     TestCode.reset_cache()
开发者ID:relsi,项目名称:w2p-social-auth,代码行数:18,代码来源:base.py


注:本文中的social.tests.models.User.reset_cache方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。