(self, session)
| 169 | |
| 170 | @placebo_session |
| 171 | def test_rollback_lambda_function_version_docker(self, session): |
| 172 | z = Zappa(session) |
| 173 | z.credentials_arn = "arn:aws:iam::724336686645:role/ZappaLambdaExecution" |
| 174 | |
| 175 | function_name = "django-helloworld-unicode" |
| 176 | |
| 177 | with self.assertRaises(NotImplementedError): |
| 178 | z.rollback_lambda_function_version(function_name) |
| 179 | |
| 180 | @placebo_session |
| 181 | def test_invoke_lambda_function(self, session): |
nothing calls this directly
no test coverage detected