36 lines
421 B
Python
36 lines
421 B
Python
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|