~deej/django-openid-auth/deb-build

« back to all changes in this revision

Viewing changes to django_openid_auth/tests/test_models.py

  • Committer: Natalia
  • Date: 2015-04-23 20:02:39 UTC
  • mto: This revision was merged to the branch mainline in revision 113.
  • Revision ID: natalia.bidart@ubuntu.com-20150423200239-398aidg4rl3bolj8
Fully test suite passing on djangos from 1.4 to 1.8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
27
# POSSIBILITY OF SUCH DAMAGE.
28
28
 
29
 
import unittest
30
 
 
31
29
from django.contrib.auth.models import User
32
30
from django.test import TestCase
33
31
 
72
70
        self.assertFalse(
73
71
            User.objects.get(username='someuser').has_perm(
74
72
                'django_openid_auth.account_verified'))
75
 
 
76
 
 
77
 
def suite():
78
 
    return unittest.TestLoader().loadTestsFromName(__name__)