diff options
Diffstat (limited to 'tests/farm/annotate/src')
-rw-r--r-- | tests/farm/annotate/src/a/__init__.py | 0 | ||||
-rw-r--r-- | tests/farm/annotate/src/a/a.py | 5 | ||||
-rw-r--r-- | tests/farm/annotate/src/b/__init__.py | 0 | ||||
-rw-r--r-- | tests/farm/annotate/src/b/b.py | 3 | ||||
-rw-r--r-- | tests/farm/annotate/src/multi.py | 5 | ||||
-rw-r--r-- | tests/farm/annotate/src/white.py | 33 |
6 files changed, 46 insertions, 0 deletions
diff --git a/tests/farm/annotate/src/a/__init__.py b/tests/farm/annotate/src/a/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/tests/farm/annotate/src/a/__init__.py diff --git a/tests/farm/annotate/src/a/a.py b/tests/farm/annotate/src/a/a.py new file mode 100644 index 00000000..c2583d1e --- /dev/null +++ b/tests/farm/annotate/src/a/a.py @@ -0,0 +1,5 @@ +def a(x): + if x == 1: + print("x is 1") + else: + print("x is not 1") diff --git a/tests/farm/annotate/src/b/__init__.py b/tests/farm/annotate/src/b/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/tests/farm/annotate/src/b/__init__.py diff --git a/tests/farm/annotate/src/b/b.py b/tests/farm/annotate/src/b/b.py new file mode 100644 index 00000000..625a5490 --- /dev/null +++ b/tests/farm/annotate/src/b/b.py @@ -0,0 +1,3 @@ +def b(x): + msg = "x is %s" % x + print(msg) diff --git a/tests/farm/annotate/src/multi.py b/tests/farm/annotate/src/multi.py new file mode 100644 index 00000000..19a6200c --- /dev/null +++ b/tests/farm/annotate/src/multi.py @@ -0,0 +1,5 @@ +import a.a +import b.b + +a.a.a(1) +b.b.b(2) diff --git a/tests/farm/annotate/src/white.py b/tests/farm/annotate/src/white.py new file mode 100644 index 00000000..ecbbd25a --- /dev/null +++ b/tests/farm/annotate/src/white.py @@ -0,0 +1,33 @@ +# A test case sent to me by Steve White + +def f(self): + if self==1: + pass + elif self.m('fred'): + pass + elif (g==1) and (b==2): + pass + elif self.m('fred')==True: + pass + elif ((g==1) and (b==2))==True: + pass + else: + pass + +def g(x): + if x == 1: + a = 1 + else: + a = 2 + +g(1) + +def h(x): + if 0: #pragma: no cover + pass + if x == 1: + a = 1 + else: + a = 2 + +h(2) |