This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.test import TestCase | |
from rest_framework.test import APIClient | |
from rest_framework import status | |
from django.core.urlresolvers import reverse | |
class LoginTestCase(TestCase): | |
"""Test suite for the api login views.""" | |
def setUp(self): |