本文整理汇总了Python中sentry.models.UserEmail.save方法的典型用法代码示例。如果您正苦于以下问题:Python UserEmail.save方法的具体用法?Python UserEmail.save怎么用?Python UserEmail.save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sentry.models.UserEmail
的用法示例。
在下文中一共展示了UserEmail.save方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_show_alt_emails
# 需要导入模块: from sentry.models import UserEmail [as 别名]
# 或者: from sentry.models.UserEmail import save [as 别名]
def test_show_alt_emails(self):
user = self.create_user('[email protected]')
self.login_as(user)
email = UserEmail(user=user, email='[email protected]')
email.save()
resp = self.client.get(self.path)
self.assertIn('[email protected]', resp.content)
assert '[email protected]' in ([thing.email for thing in user.emails.all()])
示例2: test_username_updates
# 需要导入模块: from sentry.models import UserEmail [as 别名]
# 或者: from sentry.models.UserEmail import save [as 别名]
def test_username_updates(self):
user = self.create_user('[email protected]')
self.login_as(user)
email = UserEmail(user=user, email='[email protected]')
email.save()
self.client.post(self.path, data={'primary': '', 'new_primary_email': '[email protected]'}, follow=True)
user = User.objects.get(id=user.id)
assert user.username != '[email protected]'
assert user.username == '[email protected]'
示例3: create_useremail
# 需要导入模块: from sentry.models import UserEmail [as 别名]
# 或者: from sentry.models.UserEmail import save [as 别名]
def create_useremail(self, user, email, **kwargs):
if not email:
email = uuid4().hex + '@example.com'
kwargs.setdefault('is_verified', True)
useremail = UserEmail(user=user, email=email, **kwargs)
useremail.save()
return useremail
示例4: test_remove_alt_email
# 需要导入模块: from sentry.models import UserEmail [as 别名]
# 或者: from sentry.models.UserEmail import save [as 别名]
def test_remove_alt_email(self):
user = self.create_user('[email protected]')
self.login_as(user)
email = UserEmail(user=user, email='[email protected]')
email.save()
resp = self.client.get(self.path)
self.assertIn('[email protected]', resp.content)
resp = self.client.post(self.path, data={'remove': '', 'email': '[email protected]'}, follow=True)
self.assertNotIn('[email protected]', resp.content)
assert '[email protected]' not in (email.email for email in user.emails.all())