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/conftest.py
2020-08-24 23:49:35 +02:00

37 lines
935 B
Python

import pytest
from django.utils import timezone
from articles.models import Article, Page, User
@pytest.fixture()
@pytest.mark.django_db
def author():
return User.objects.create_user("gaugendre")
@pytest.fixture()
@pytest.mark.django_db
def published_article(author):
return Article.objects.create(
title="Some interesting article title",
status=Article.PUBLISHED,
author=author,
published_at=timezone.now(),
slug="some-article-slug",
content="## some article markdown\n\n[an article link](https://article.com)",
)
@pytest.fixture()
@pytest.mark.django_db
def published_page(author):
return Page.objects.create(
title="Some interesting page title",
status=Article.PUBLISHED,
author=author,
published_at=timezone.now(),
slug="some-page-slug",
content="## some page markdown\n\n[a page link](https://page.com)",
)