blob: 2f6243592570b4e3017637a899a90744ea8a50b1 (
plain)
1
2
3
4
5
6
7
8
|
import pytest
from blog import blog_pages
@pytest.mark.parametrize("entry", list(blog_pages.CONTENT.glob("*/*/*.gmi")))
def test_html_rendering(entry):
blog_pages.Entry(entry).html()
|