32 lines
704 B
Python
32 lines
704 B
Python
# from django.conf import settings
|
|
# from django.shortcuts import reverse
|
|
from django.test import TestCase, Client
|
|
|
|
import pytest
|
|
import unittest
|
|
import requests
|
|
|
|
|
|
|
|
@pytest.mark.skip(reason="to be written")
|
|
def test_software_auth_view(user):
|
|
""" Check correct permission for view """
|
|
pass
|
|
|
|
|
|
@pytest.mark.skip(reason="to be written")
|
|
def test_software_auth_add(user):
|
|
""" Check correct permission for add """
|
|
pass
|
|
|
|
|
|
@pytest.mark.skip(reason="to be written")
|
|
def test_software_auth_change(user):
|
|
""" Check correct permission for change """
|
|
pass
|
|
|
|
|
|
@pytest.mark.skip(reason="to be written")
|
|
def test_software_auth_delete(user):
|
|
""" Check correct permission for delete """
|
|
pass |