Test equality comparison.
(self)
| 87 | assert result.get("data_size") is None or "data_size" not in result |
| 88 | |
| 89 | def test_equality(self): |
| 90 | """Test equality comparison.""" |
| 91 | config1 = DatasetConfig(file_path="/path/a.json", source="A") |
| 92 | config2 = DatasetConfig(file_path="/path/a.json", source="A") |
| 93 | config3 = DatasetConfig(file_path="/path/b.json", source="B") |
| 94 | |
| 95 | assert config1 == config2 |
| 96 | assert config1 != config3 |
| 97 | |
| 98 | |
| 99 | class TestStandardConfig: |
nothing calls this directly
no test coverage detected