Re: Python doctest in clojure?

2013-11-10 Thread dechouxb
Yes, I did find that out later. Thanks a lot. That what was I was looking for. It is indeed not exactly the same but close enough. Bertrand On Sunday, November 10, 2013 8:49:39 AM UTC+1, James Reeves wrote: The standard clojure.test namespace included in Clojure has this functionality (or

Python doctest in clojure?

2013-11-09 Thread dechouxb
Hello, While reading about tests in Python, I found the doctest module : http://docs.python.org/3/library/doctest.html#module-doctest. Essentially, the idea is that the documentation of the function is parsed/evaluated. And if something looks like an example it is run and verified. The neat