Hello all: I've started using IronPython on a new desktop application, and I am really enjoying it. One thing I missed, though, was an easy-to-use unit testing framework. I'm very new to both .NET and IronPython, but I made a first stab at writing a unit testing module.
It's still very much a work in progress, but feel free to look at it/play around, etc. And of course, feedback is very welcome. http://ginstrom.com/IpyUnit.html Minimal usage: >>> import IpyUnit >>> class t(IpyUnit.TestClass): ... def test1(self): ... self.failUnlessEqual(1+1,2) ... >>> IpyUnit.registerTestClass(t) >>> IpyUnit.run() Regards, Ryan -- Ryan Ginstrom _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
