(self, session)
| 179 | |
| 180 | @placebo_session |
| 181 | def test_invoke_lambda_function(self, session): |
| 182 | z = Zappa(session) |
| 183 | z.credentials_arn = "arn:aws:iam::724336686645:role/ZappaLambdaExecution" |
| 184 | |
| 185 | function_name = "django-helloworld-unicode" |
| 186 | payload = '{"event": "hello"}' |
| 187 | response = z.invoke_lambda_function(function_name, payload) |
| 188 | |
| 189 | @placebo_session |
| 190 | def test_create_iam_roles(self, session): |
nothing calls this directly
no test coverage detected