Calls lambda_build function (tested elsewhere).
(self, mock_build: mock.MagicMock)
| 56 | |
| 57 | @mock.patch.object(manager_module, 'lambda_build') |
| 58 | def test_build(self, mock_build: mock.MagicMock): |
| 59 | """Calls lambda_build function (tested elsewhere).""" |
| 60 | self.manager.build() |
| 61 | mock_build.assert_called_once() |
| 62 | |
| 63 | def test_cb_copy_all_not_enabled(self): |
| 64 | """Raises InvalidConfigError if the downloader is not enabled.""" |