Re: TDD with nose or py.test

2009-12-05 Thread geremy condra
On Sat, Dec 5, 2009 at 6:37 PM, Paul Rubin wrote: > geremy condra writes: >> I use unittest, but mostly because its so close to junit and cppunit, >> which I also use extensively. Having said that, it *is* in the standard >> library and is a common denominator between all your options. > > What h

Re: TDD with nose or py.test

2009-12-05 Thread Paul Rubin
geremy condra writes: > I use unittest, but mostly because its so close to junit and cppunit, > which I also use extensively. Having said that, it *is* in the standard > library and is a common denominator between all your options. What happened to doctest? -- http://mail.python.org/mailman/list

Re: TDD with nose or py.test

2009-12-05 Thread geremy condra
On Mon, Nov 30, 2009 at 8:46 AM, Lacrima wrote: > Hello! > > I am learning TDD with Python and there is not much information about > this topic. Python is shipped with unittest module. That is fine, but > I also discovered other libraries: nose and py.test. They promise to > make life yet easier f

Re: TDD with nose or py.test

2009-12-05 Thread Roy Smith
In article <2519ffb0-fd49-4340-857b-62fca5c71...@33g2000vbe.googlegroups.com>, Lacrima wrote: > Hello! > > I am learning TDD with Python and there is not much information about > this topic. Python is shipped with unittest module. That is fine, but > I also discovered other libraries: nose and

Re: TDD with nose or py.test

2009-12-05 Thread Aahz
In article <2519ffb0-fd49-4340-857b-62fca5c71...@33g2000vbe.googlegroups.com>, Lacrima wrote: > >I am learning TDD with Python and there is not much information about >this topic. Python is shipped with unittest module. That is fine, but >I also discovered other libraries: nose and py.test. They

TDD with nose or py.test

2009-11-30 Thread Lacrima
Hello! I am learning TDD with Python and there is not much information about this topic. Python is shipped with unittest module. That is fine, but I also discovered other libraries: nose and py.test. They promise to make life yet easier for a developer. But I still can't figure out, which combinat