(question=None)
| 444 | |
| 445 | # custom function |
| 446 | def meaning_of_life(question=None): |
| 447 | if question: |
| 448 | return 42 |
| 449 | return "Don't panic" |
| 450 | |
| 451 | nt.assert_in('meaning_of_life(question=None)', pretty.pretty(meaning_of_life)) |
| 452 |
nothing calls this directly
no outgoing calls
no test coverage detected