mirror of
https://github.com/pelican-plugins/share-post.git
synced 2026-05-28 21:06:13 +02:00
9 lines
154 B
Python
9 lines
154 B
Python
import pytest
|
|
|
|
from pelican.tests.support import temporary_folder
|
|
|
|
|
|
@pytest.fixture
|
|
def tmp_folder():
|
|
with temporary_folder() as tf:
|
|
yield tf
|