summaryrefslogtreecommitdiff
path: root/tests/gold/annotate/anno_dir
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-11-18 11:24:07 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-11-18 12:23:05 -0500
commit740d257d6c6a1bd26900af5115aa9cfa2d3a8b40 (patch)
treee64144aad8658c504178ded75e98870d11fc2de0 /tests/gold/annotate/anno_dir
parent2fb113e60c2733e640f92d737278431a1f670052 (diff)
downloadpython-coveragepy-git-740d257d6c6a1bd26900af5115aa9cfa2d3a8b40.tar.gz
Rename farm to gold, since that's what it is
Diffstat (limited to 'tests/gold/annotate/anno_dir')
-rw-r--r--tests/gold/annotate/anno_dir/a___init__.py,cover0
-rw-r--r--tests/gold/annotate/anno_dir/a_a.py,cover5
-rw-r--r--tests/gold/annotate/anno_dir/b___init__.py,cover0
-rw-r--r--tests/gold/annotate/anno_dir/b_b.py,cover3
-rw-r--r--tests/gold/annotate/anno_dir/multi.py,cover5
5 files changed, 13 insertions, 0 deletions
diff --git a/tests/gold/annotate/anno_dir/a___init__.py,cover b/tests/gold/annotate/anno_dir/a___init__.py,cover
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/tests/gold/annotate/anno_dir/a___init__.py,cover
diff --git a/tests/gold/annotate/anno_dir/a_a.py,cover b/tests/gold/annotate/anno_dir/a_a.py,cover
new file mode 100644
index 00000000..d0ff3c0c
--- /dev/null
+++ b/tests/gold/annotate/anno_dir/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/anno_dir/b___init__.py,cover b/tests/gold/annotate/anno_dir/b___init__.py,cover
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/tests/gold/annotate/anno_dir/b___init__.py,cover
diff --git a/tests/gold/annotate/anno_dir/b_b.py,cover b/tests/gold/annotate/anno_dir/b_b.py,cover
new file mode 100644
index 00000000..90d076f1
--- /dev/null
+++ b/tests/gold/annotate/anno_dir/b_b.py,cover
@@ -0,0 +1,3 @@
+> def b(x):
+> msg = "x is %s" % x
+> print(msg)
diff --git a/tests/gold/annotate/anno_dir/multi.py,cover b/tests/gold/annotate/anno_dir/multi.py,cover
new file mode 100644
index 00000000..2a5c59ce
--- /dev/null
+++ b/tests/gold/annotate/anno_dir/multi.py,cover
@@ -0,0 +1,5 @@
+> import a.a
+> import b.b
+
+> a.a.a(1)
+> b.b.b(2)