diff options
Diffstat (limited to 'tests/gold/annotate/multi')
| -rw-r--r-- | tests/gold/annotate/multi/a/__init__.py,cover | 0 | ||||
| -rw-r--r-- | tests/gold/annotate/multi/a/a.py,cover | 5 | ||||
| -rw-r--r-- | tests/gold/annotate/multi/b/__init__.py,cover | 0 | ||||
| -rw-r--r-- | tests/gold/annotate/multi/b/b.py,cover | 2 | ||||
| -rw-r--r-- | tests/gold/annotate/multi/multi.py,cover | 5 |
5 files changed, 12 insertions, 0 deletions
diff --git a/tests/gold/annotate/multi/a/__init__.py,cover b/tests/gold/annotate/multi/a/__init__.py,cover new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/tests/gold/annotate/multi/a/__init__.py,cover diff --git a/tests/gold/annotate/multi/a/a.py,cover b/tests/gold/annotate/multi/a/a.py,cover new file mode 100644 index 00000000..fb3f5435 --- /dev/null +++ b/tests/gold/annotate/multi/a/a.py,cover @@ -0,0 +1,5 @@ +> def a(x): +> if x == 1: +> print "x is 1" +! else: +! print "x is not 1" diff --git a/tests/gold/annotate/multi/b/__init__.py,cover b/tests/gold/annotate/multi/b/__init__.py,cover new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/tests/gold/annotate/multi/b/__init__.py,cover diff --git a/tests/gold/annotate/multi/b/b.py,cover b/tests/gold/annotate/multi/b/b.py,cover new file mode 100644 index 00000000..a3f5daec --- /dev/null +++ b/tests/gold/annotate/multi/b/b.py,cover @@ -0,0 +1,2 @@ +> def b(x): +> print "x is %s" % x diff --git a/tests/gold/annotate/multi/multi.py,cover b/tests/gold/annotate/multi/multi.py,cover new file mode 100644 index 00000000..2a5c59ce --- /dev/null +++ b/tests/gold/annotate/multi/multi.py,cover @@ -0,0 +1,5 @@ +> import a.a +> import b.b + +> a.a.a(1) +> b.b.b(2) |
