(sauce)
| 251 | |
| 252 | @sensitive_variables("sauce") |
| 253 | def sensitive_args_function(sauce): |
| 254 | # Do not just use plain strings for the variables' values in the code |
| 255 | # so that the tests don't return false positives when the function's source |
| 256 | # is displayed in the exception report. |
| 257 | cooked_eggs = "".join(["s", "c", "r", "a", "m", "b", "l", "e", "d"]) # NOQA |
| 258 | raise Exception |
| 259 | |
| 260 | |
| 261 | def sensitive_kwargs_function_caller(request): |
no test coverage detected