Sample XML content for testing.
()
| 239 | |
| 240 | @pytest.fixture |
| 241 | def 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 |
nothing calls this directly
no outgoing calls
no test coverage detected