initial commit
This commit is contained in:
10
billinglayer/python/shapely/geometry/conftest.py
Normal file
10
billinglayer/python/shapely/geometry/conftest.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""Autouse fixtures for doctests."""
|
||||
|
||||
import pytest
|
||||
|
||||
from .linestring import LineString
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def add_linestring(doctest_namespace):
|
||||
doctest_namespace["LineString"] = LineString
|
||||
Reference in New Issue
Block a user