Index: django/contrib/auth/tests.py
===================================================================
--- django/contrib/auth/tests.py	(revision 6894)
+++ django/contrib/auth/tests.py	(working copy)
@@ -16,9 +16,21 @@
 >>> u2 = User.objects.create_user('testuser2', 'test2@example.com')
 >>> u2.has_usable_password()
 False
+
+>>> u.is_authenticated()
+True
+>>> u.is_staff
+False
+>>> u.is_active
+True
+
 >>> a = AnonymousUser()
+>>> a.is_authenticated()
+False
 >>> a.is_staff
 False
+>>> a.is_active
+False
 >>> a.groups.all()
 []
 >>> a.user_permissions.all()
Index: django/contrib/auth/models.py
===================================================================
--- django/contrib/auth/models.py	(revision 6894)
+++ django/contrib/auth/models.py	(working copy)
@@ -322,7 +322,7 @@
     id = None
     username = ''
     is_staff = False
-    is_active = True
+    is_active = False
     is_superuser = False
     _groups = EmptyManager()
     _user_permissions = EmptyManager()
