Re: [Tutor] TDD in Python

2016-09-27 Thread Peter Otten
angela ebirim wrote: > Hello everyone, > > I'm a new member on this maling list and am in the process of learning > python. > > I'm keen to learn about testing my Python code and hoping someone could > help me with this query... > > #test.py > > class Test: >def __init__(self, members): >

Re: [Tutor] TDD in Python

2016-09-26 Thread Steven D'Aprano
Hi Angela, and welcome! My comments below, interleaved with yours. On Mon, Sep 26, 2016 at 09:54:18PM +0100, angela ebirim wrote: [...] > I'm keen to learn about testing my Python code and hoping someone could > help me with this query... > > #test.py > > class Test: >def __init__(self, m

[Tutor] TDD in Python

2016-09-26 Thread angela ebirim
Hello everyone, I'm a new member on this maling list and am in the process of learning python. I'm keen to learn about testing my Python code and hoping someone could help me with this query... #test.py class Test: def __init__(self, members): self.members = members def printMe