Re: BDD - Given When Then

2011-07-14 Thread Max Weber
Thank you for your responses. I wrote a prototype for a BDD / "Given When Then" extension for Lazytest yesterday. Today I'm going to write some integration tests with it. Along the way I'm going to try to improve the API. If the extension is useful afterwards, I'm

Re: BDD - Given When Then

2011-07-12 Thread ckirkendall
I did just recently port Jim Weirich's ruby based rspec-given to Clojure. It is a very simple BDD framework build on top of clojure.test as a set of macros. You can find the link here. https://github.com/ckirkendall/ClojureGiven Creighton Kirkendall On Jul 11, 2:12 pm, Max Weber wrote: > Hi,

Re: BDD - Given When Then

2011-07-12 Thread Justin Ko
On Jul 11, 2:12 pm, Max Weber wrote: > Hi, > > I like to write some integration/acceptance tests in Clojure. At the moment > I'm using cuke4duke (cucumber), but I'm not satisfied with it. For my unit "When I’m done with the book I will pick up the work on a pure Java implementation that will su

BDD - Given When Then

2011-07-11 Thread Max Weber
Hi, I like to write some integration/acceptance tests in Clojure. At the moment I'm using cuke4duke (cucumber), but I'm not satisfied with it. For my unit tests I'm already using lazytest. In the acceptance tests I like to apply the typical Given When Then template (like cucumber do). So are there