Test initialization with work_dir.
(self, temp_dir)
| 140 | logger.close() |
| 141 | |
| 142 | def test_init_with_work_dir(self, temp_dir): |
| 143 | """Test initialization with work_dir.""" |
| 144 | logger = Logger(work_dir=temp_dir) |
| 145 | assert logger is not None |
| 146 | logger.close() |
| 147 | |
| 148 | def test_init_console_disabled(self): |
| 149 | """Test initialization with console disabled.""" |