本文整理汇总了Python中application.models.User.is_active方法的典型用法代码示例。如果您正苦于以下问题:Python User.is_active方法的具体用法?Python User.is_active怎么用?Python User.is_active使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类application.models.User
的用法示例。
在下文中一共展示了User.is_active方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: UserTestCase
# 需要导入模块: from application.models import User [as 别名]
# 或者: from application.models.User import is_active [as 别名]
class UserTestCase(unittest.TestCase):
def setUp(self):
self.user = User('mock-name', 'mock-pass')
def test_is_authenticated(self):
self.assertTrue(self.user.is_authenticated())
def test_is_active(self):
self.user.active = False
self.assertFalse(self.user.is_active())
self.user.active = True
self.assertTrue(self.user.is_active())
def test_is_anonymous(self):
self.assertFalse(self.user.is_anonymous())
def test_get_id(self):
self.user.id = 123
self.assertEqual(self.user.id, self.user.get_id())