virtuelle Umgebung teil20b
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def xml_data_path(tests_io_data_path, datapath):
|
||||
return tests_io_data_path / "xml"
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def xml_books(xml_data_path, datapath):
|
||||
return datapath(xml_data_path / "books.xml")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def xml_doc_ch_utf(xml_data_path, datapath):
|
||||
return datapath(xml_data_path / "doc_ch_utf.xml")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def xml_baby_names(xml_data_path, datapath):
|
||||
return datapath(xml_data_path / "baby_names.xml")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def kml_cta_rail_lines(xml_data_path, datapath):
|
||||
return datapath(xml_data_path / "cta_rail_lines.kml")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def xsl_flatten_doc(xml_data_path, datapath):
|
||||
return datapath(xml_data_path / "flatten_doc.xsl")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def xsl_row_field_output(xml_data_path, datapath):
|
||||
return datapath(xml_data_path / "row_field_output.xsl")
|
Reference in New Issue
Block a user