Skip to content

Instantly share code, notes, and snippets.

View maxwellgithinji's full-sized avatar

Charles Maxwel Githinji Waweru maxwellgithinji

View GitHub Profile
@maxwellgithinji
maxwellgithinji / media-query.css
Created July 22, 2019 06:09 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
"""
User authentication test cases
"""
from rest_framework.test import APIClient
from rest_framework import status
from django.core.urlresolvers import reverse
class UserAuth(TestCase):