aboutsummaryrefslogtreecommitdiff
blob: 590bb796b7b7e025bb7b917a0092bc5070462576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
diff -ur testfixtures-2.3.4.orig/testfixtures/tests/test_comparison.py testfixtures-2.3.4/testfixtures/tests/test_comparison.py
--- testfixtures/tests/test_comparison.py	2012-01-26 18:00:05.000000000 +0800
+++ testfixtures/tests/test_comparison.py	2012-04-13 19:00:15.856224293 +0800
@@ -5,7 +5,7 @@
 from testfixtures.tests.sample1 import TestClassA,a_function
 from unittest import TestCase,TestSuite,makeSuite
 
-from .compat import py_27_plus
+from compat import py_27_plus
 
 class AClass:
 
diff -ur testfixtures-2.3.4.orig/tests/test_components.py testfixtures-2.3.4/testfixtures/tests/test_components.py
--- testfixtures/tests/test_components.py	2012-01-27 02:41:51.000000000 +0800
+++ testfixtures/tests/test_components.py	2012-04-13 19:08:44.434220585 +0800
@@ -14,7 +14,7 @@
 from testfixtures import compare
 from unittest import TestCase
 
-from .compat import catch_warnings
+from compat import catch_warnings
 
 class ComponentsTests(TestCase):
 
diff -ur testfixtures-2.3.4.orig/testfixtures/tests/test_docs.py testfixtures-2.3.4/testfixtures/tests/test_docs.py
--- testfixtures/tests/test_docs.py	2012-01-28 16:07:57.000000000 +0800
+++ testfixtures/tests/test_docs.py	2012-04-13 19:03:36.649223003 +0800
@@ -11,7 +11,7 @@
 
 import os
 
-from . import compat
+import compat
 
 workspace = os.environ.get('WORKSPACE', join(dirname(__file__), pardir, pardir))
 tests = glob(join(workspace,'docs', '*.txt'))
diff -ur testfixtures-2.3.4.orig/testfixtures/tests/test_logcapture.py testfixtures-2.3.4/testfixtures/tests/test_logcapture.py
--- testfixtures/tests/test_logcapture.py	2012-01-27 02:41:26.000000000 +0800
+++ testfixtures/tests/test_logcapture.py	2012-04-13 19:09:02.930220838 +0800
@@ -10,7 +10,7 @@
 
 from logging import getLogger
 
-from .compat import catch_warnings
+from compat import catch_warnings
 
 root = getLogger()
 one = getLogger('one')
diff -ur testfixtures-2.3.4.orig/testfixtures/tests/test_replace.py testfixtures-2.3.4/testfixtures/tests/test_replace.py
--- testfixtures/tests/test_replace.py	2012-01-27 02:34:12.000000000 +0800
+++ testfixtures/tests/test_replace.py	2012-04-13 19:09:18.842220416 +0800
@@ -17,7 +17,7 @@
 import sample1
 import sample2
 
-from .compat import catch_warnings
+from compat import catch_warnings
 
 class TestReplace(TestCase):
 
diff -ur testfixtures-2.3.4.orig/testfixtures/tests/test_should_raise.py testfixtures-2.3.4/testfixtures/tests/test_should_raise.py
--- testfixtures/tests/test_should_raise.py	2012-01-27 02:43:51.000000000 +0800
+++ testfixtures/tests/test_should_raise.py	2012-04-13 19:09:36.235220628 +0800
@@ -5,7 +5,7 @@
 from testfixtures import should_raise,ShouldRaise,Comparison as C
 from unittest import TestCase,TestSuite,makeSuite
 
-from .compat import py_27_plus
+from compat import py_27_plus
 
 class TestShouldRaise(TestCase):
 
diff -ur testfixtures-2.3.4.orig/testfixtures/tests/test_tempdirectory.py testfixtures-2.3.4/testfixtures/tests/test_tempdirectory.py
--- testfixtures/tests/test_tempdirectory.py	2012-01-27 02:25:43.000000000 +0800
+++ testfixtures/tests/test_tempdirectory.py	2012-04-13 19:09:54.971220623 +0800
@@ -13,7 +13,7 @@
 
 from logging import getLogger
 
-from .compat import catch_warnings
+from compat import catch_warnings
 
 class DemoTempDirectory:
 
diff -ur testfixtures-2.3.4.orig/testfixtures/tests/test_manuel_examples.py testfixtures-2.3.4/testfixtures/tests/test_manuel_examples.py
--- testfixtures/tests/test_manuel_examples.py	2012-01-26 04:31:12.000000000 +0800
+++ testfixtures/tests/test_manuel_examples.py	2012-04-13 21:14:05.390172684 +0800
@@ -11,7 +11,7 @@
 from testfixtures import TempDirectory
 from testfixtures.manuel import Files
 
-from . import compat
+import compat
 
 def setUp(test):
     test.globs['tempdir']=TempDirectory()
diff -ur testfixtures-2.3.4.orig/testfixtures/components.py testfixtures-2.3.4/testfixtures/components.py
--- testfixtures/components.py	2011-10-12 00:21:45.000000000 +0800
+++ testfixtures/components.py	2012-04-29 18:12:41.891588669 +0800
@@ -4,8 +4,8 @@
 import atexit
 import warnings
 
-from zope.component import getSiteManager
-from zope.component.registry import Components
+#from zope.component import getSiteManager
+#from zope.component.registry import Components
 
 class TestComponents:
     """
@@ -20,11 +20,8 @@
     atexit_setup = False
     
     def __init__(self):
-        self.registry = Components('Testing')
-        self.old = getSiteManager.sethook(lambda:self.registry)
         self.instances.add(self)
         if not self.__class__.atexit_setup:
-            atexit.register(self.atexit)
             self.__class__.atexit_setup = True
 
     def uninstall(self):
@@ -33,7 +30,6 @@
         was in place before this :class:`TestComponents` was
         instantiated.
         """
-        getSiteManager.sethook(self.old)
         self.instances.remove(self)
         
     @classmethod