Test string representation of SourceInfoSchema.
()
| 82 | |
| 83 | |
| 84 | def test_str_repr() -> None: |
| 85 | """Test string representation of SourceInfoSchema.""" |
| 86 | schema = SourceInfoSchema("1") |
| 87 | |
| 88 | assert "1" == str(schema) |
| 89 | assert "SourceInfoSchema(1)" == repr(schema) |
| 90 | |
| 91 | |
| 92 | def test_version_consistency(valid_srcinfo_content: str) -> None: |
nothing calls this directly
no test coverage detected