Index: flake8-abp/tests/A112.py |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/flake8-abp/tests/A112.py |
@@ -0,0 +1,11 @@ |
+class Foo: |
+ def unicode(self): |
+ # A112 |
+ u"""This should not be a unicode docstring""" |
Sebastian Noack
2016/05/27 12:33:48
This test code can be simplified by using a functi
|
+ |
+ |
+def foo(): |
+ return [ |
Sebastian Noack
2016/05/27 12:33:48
This test code can b e simplified by just returnin
|
+ # A112 |
+ u'yeahyeah' |
+ ] |