Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TDD with IronPython [closed]

Tags:

tdd

ironpython

Can anyone recommend tools or articles that help me to learn how to TDD IronPython code?

like image 747
Vadim Avatar asked Nov 15 '25 23:11

Vadim


1 Answers

The current version of IronPython (v2.0) doesn't seem to agree with nose. This may have been fixed in 2.6, but I haven't re-run my test to figure that out yet. So for now you're only option - unless someone has experimented with one of the other python testing frameworks - pyunit is you're only choice.

You may also want to check out mock, a mocking framework created by Michael Foord which pretty much guarantees that it's going to work just fine with IronPython. If I recall correctly, he even shows some examples in his book, IronPython in Action.

Finally, you should probably check out this link from the cheesecake project for several other tools that you might be interested in.

like image 161
Darrell Hawley Avatar answered Nov 17 '25 22:11

Darrell Hawley