mirror of
https://github.com/pelican-plugins/share-post.git
synced 2025-10-15 17:08:54 +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
|