Coverage for  / opt / hostedtoolcache / Python / 3.11.14 / x64 / lib / python3.11 / site-packages / rattlesnake / hello.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-02-27 18:22 +0000

1"""This is a minimum working example of a test framework.""" 

2 

3 

4def greet(name: str) -> str: 

5 """Return a greeting message.""" 

6 return f"Hello, {name}!"