MCPcopy Create free account
hub / github.com/ScrapeGraphAI/Scrapegraph-ai / sample_xml

Function sample_xml

tests/conftest.py:241–257  ·  view source on GitHub ↗

Sample XML content for testing.

()

Source from the content-addressed store, hash-verified

239
240@pytest.fixture
241def sample_xml() -> str:
242 """Sample XML content for testing."""
243 return """<?xml version="1.0" encoding="UTF-8"?>
244 <company>
245 <name>Test Company</name>
246 <employees>
247 <employee>
248 <name>Alice</name>
249 <role>Engineer</role>
250 </employee>
251 <employee>
252 <name>Bob</name>
253 <role>Designer</role>
254 </employee>
255 </employees>
256 </company>
257 """
258
259
260@pytest.fixture

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected