from django.shortcuts import reverse from django.test import TestCase, Client import pytest import unittest @pytest.mark.skip(reason="to be written") def test_api_access_auth_required(user): """Ensure that no api access has been granted """ pass @pytest.mark.skip(reason="to be written") def test_api_access_home(user): """Ensure api home view visible once logged in """ pass