Test that SourceInfoSchema instances with same version are equal.
()
| 99 | |
| 100 | |
| 101 | def test_equality() -> None: |
| 102 | """Test that SourceInfoSchema instances with same version are equal.""" |
| 103 | schema1 = SourceInfoSchema("1") |
| 104 | schema2 = SourceInfoSchema("1.0.0") |
| 105 | |
| 106 | assert schema1 == schema2 |
| 107 | |
| 108 | |
| 109 | def test_derive_from_empty_file() -> None: |
nothing calls this directly
no test coverage detected