()
| 92 | |
| 93 | @contextlib.contextmanager |
| 94 | def mock_dev_null_home_dir(): |
| 95 | with unittest.mock.patch( |
| 96 | 'pathlib.Path.home', |
| 97 | unittest.mock.Mock(return_value=pathlib.Path('/dev/null')), |
| 98 | ): |
| 99 | yield |
| 100 | |
| 101 | |
| 102 | class TestSettings(tb.ConnectedTestCase): |
no outgoing calls
no test coverage detected
searching dependent graphs…