Can anyone recommend tools or articles that help me to learn how to TDD IronPython code?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.