Create a saver instance for testing.
(self, temp_dir, mock_logger, yaml_config_file)
| 107 | |
| 108 | @pytest.fixture |
| 109 | def saver(self, temp_dir, mock_logger, yaml_config_file): |
| 110 | """Create a saver instance for testing.""" |
| 111 | return StandardDataSaver( |
| 112 | output_dir=temp_dir, dataset=yaml_config_file, logger=mock_logger |
| 113 | ) |
| 114 | |
| 115 | def test_save_creates_file(self, saver, temp_dir): |
| 116 | """Test that save creates output file.""" |
nothing calls this directly
no test coverage detected