Hi, in this class many methods share common code.
class Foo(object):
def m1(self):
if self.foo:
pass # m1 do something
elif self.bar:
pass # m1 do something else
else:
pass # m1 do something different
def m2(self):
if sel
On 22 August 2011 00:17, Dave Angel wrote:
> On 08/21/2011 05:35 PM, D. Guandalino wrote:
>
>> Python documentation says:
>>
>> exception TypeError
>>>
>>> Raised when an operation or function is applied to an object of
>>> inappropriate ty
Suppose I have this TestCase class.
class C(TestCase):
def setUp():
# very time consuming and resources intensive stuffs.
pass
def test_A(self):
pass
def test_B(self):
pass
def test_C(self):
pass
The unittest docs says:
> Each instance of the TestCas
Python documentation says:
> exception TypeError
>
> Raised when an operation or function is applied to an object of
> inappropriate type. The associated value is a string giving details
> about the type mismatch.
For example:
>>> 'foo' + (1, 2)
Traceback (most recent call last):
File "", line