This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/articles/tests/test_admin.py

13 lines
324 B
Python

import pytest
from django.test import Client
from django.urls import reverse
from articles.models import User
@pytest.mark.django_db
def test_can_access_add_article(client: Client, author: User):
client.force_login(author)
res = client.get(reverse("admin:articles_article_add"))
assert res.status_code == 200