Re: [Zope-dev] Re: SVN: Zope/branches/Zope-2_8-branch/ - Collector #1879: applied patch by Dieter Maurer to fix a bug in

2005-09-27 Thread Dieter Maurer
Florent Guillaume wrote at 2005-9-26 18:31 +0200: >This is the kind of thing that would *really* benefit from having unit >tests... from Acquisition import Explicit class A(Explicit): x = 1 ... def test_aq_acquire(self): ac = A() a = A().__of__(ac) self.assertEqual(a.aq_acquire('x'), 1) s

Re: [Zope-dev] Re: SVN: Zope/branches/Zope-2_8-branch/ - Collector #1879: applied patch by Dieter Maurer to fix a bug in

2005-09-26 Thread Andreas Jung
You could convince Dieter to write unittests for his patches :-) On the other side his patches are in 99% of the cases trustworthy. Otherwise this bug would remain open. -aj --On 26. September 2005 18:31:27 +0200 Florent Guillaume <[EMAIL PROTECTED]> wrote: This is the kind of thing that

[Zope-dev] Re: SVN: Zope/branches/Zope-2_8-branch/ - Collector #1879: applied patch by Dieter Maurer to fix a bug in

2005-09-26 Thread Florent Guillaume
This is the kind of thing that would *really* benefit from having unit tests... Florent Andreas Jung <[EMAIL PROTECTED]> wrote: > Log message for revision 38586: > - Collector #1879: applied patch by Dieter Maurer to fix a bug in > ac_aquire() ignoring the default argument >