17 lines
466 B
Python
17 lines
466 B
Python
from django.test import TestCase
|
|
from django.core.files import File
|
|
from django.contrib.auth.models import User
|
|
from rest_framework.test import APITestCase
|
|
from rest_framework import status
|
|
from rest_framework.test import force_authenticate
|
|
from webapp.models import Tag, Feed
|
|
from webapp.serializers import TagSerializer, FeedSerializer
|
|
|
|
from collections import OrderedDict
|
|
from itertools import islice
|
|
import tempfile
|
|
|
|
|
|
class SignupTestCase(APITestCase):
|
|
pass
|