11 lines
208 B
Python
11 lines
208 B
Python
"""Autouse fixtures for doctests."""
|
|
|
|
import pytest
|
|
|
|
from .linestring import LineString
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def add_linestring(doctest_namespace):
|
|
doctest_namespace["LineString"] = LineString
|