| Index: flake8-abp/tests/A203.py | 
| =================================================================== | 
| new file mode 100644 | 
| --- /dev/null | 
| +++ b/flake8-abp/tests/A203.py | 
| @@ -0,0 +1,16 @@ | 
| +def noop(): | 
| + pass | 
| + | 
| + | 
| +def foo(): | 
| + """This is a doc string""" | 
| + # A203 | 
| + 'this string is unused' | 
| + noop() | 
| + | 
| + | 
| +def bar(): | 
| + # A203 | 
| + 42 | 
| + # A203 | 
| + noop() is None |