summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-03-15 08:12:14 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-03-15 08:12:14 -0400
commitef458b14849712f1c2e6036d1837c17e4d94055f (patch)
tree3454a936e389135223694392dd77fd401b405a9d
parent89969a52ac0ac3ebd6271ed302d93738f7ddb781 (diff)
downloadpython-coveragepy-git-ef458b14849712f1c2e6036d1837c17e4d94055f.tar.gz
Remove the files obsoleted by the farm tests.
-rw-r--r--test/white.py31
-rw-r--r--test/white.py,cover31
2 files changed, 0 insertions, 62 deletions
diff --git a/test/white.py b/test/white.py
deleted file mode 100644
index 0c4bcb81..00000000
--- a/test/white.py
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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 x == 1:
- a = 1
- else:
- a = 2
-
-h(2)
diff --git a/test/white.py,cover b/test/white.py,cover
deleted file mode 100644
index a959ed5a..00000000
--- a/test/white.py,cover
+++ /dev/null
@@ -1,31 +0,0 @@
- # 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 x == 1:
-! a = 1
-> else:
-> a = 2
-
-> h(2)