Re: blog article on RSpec like TDD with a rapid feedback cycle in Clojure

2013-10-21 Thread Waldemar Schwan
I had notized that. It is correctly linked. No worries. Gruß Waldemar > Am 21.10.2013 um 15:43 schrieb John Szakmeister : > >> On Sun, Oct 20, 2013 at 4:24 PM, Korny Sietsma wrote: >> Note you can do the same thing in midje : >> https://github.com/marick/Midje/wiki/Auto test - it works quite n

Re: blog article on RSpec like TDD with a rapid feedback cycle in Clojure

2013-10-21 Thread John Szakmeister
On Sun, Oct 20, 2013 at 4:24 PM, Korny Sietsma wrote: > Note you can do the same thing in midje : > https://github.com/marick/Midje/wiki/Auto test - it works quite nicely. Looks like a space made it in between "Auto" and "test". The link should be:

Re: blog article on RSpec like TDD with a rapid feedback cycle in Clojure

2013-10-21 Thread Waldemar Schwan
Thanks for the info. I will give it a try and update the article. :) Gruß Waldemar > Am 21.10.2013 um 09:36 schrieb Glen Mailer : > > If you're on a Mac and using Speclj you may want to try out > https://github.com/pgr0ss/speclj-growl - you won't even need to look at your > terminal! > > Glen

Re: blog article on RSpec like TDD with a rapid feedback cycle in Clojure

2013-10-21 Thread Glen Mailer
If you're on a Mac and using Speclj you may want to try out https://github.com/pgr0ss/speclj-growl - you won't even need to look at your terminal! Glen -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure

Re: blog article on RSpec like TDD with a rapid feedback cycle in Clojure

2013-10-20 Thread Jay Fields
expectations has the same thing as well: https://github.com/jakemcc/lein-autoexpect I think midje, speclj, and expectations all have emacs modes as well - which completely eliminate the JVM start up issue. On Sun, Oct 20, 2013 at 4:36 PM, Waldemar wrote: > I suspected as much. > Thanks for the l

Re: blog article on RSpec like TDD with a rapid feedback cycle in Clojure

2013-10-20 Thread Waldemar
I suspected as much. Thanks for the link. I did put it in as a comment. Best regards, Waldemar Am 20.10.2013 um 22:24 schrieb Korny Sietsma : > Note you can do the same thing in midje : > https://github.com/marick/Midje/wiki/Auto test - it works quite nicely. > > On 20 Oct 2013 21:04, "Waldem

Re: blog article on RSpec like TDD with a rapid feedback cycle in Clojure

2013-10-20 Thread Korny Sietsma
Note you can do the same thing in midje : https://github.com/marick/Midje/wiki/Auto test - it works quite nicely. On 20 Oct 2013 21:04, "Waldemar" wrote: > I noticed that some struggle finding a good TDD workflow, in > Clojure, > with a rapid feedback cycle

blog article on RSpec like TDD with a rapid feedback cycle in Clojure

2013-10-20 Thread Waldemar
I noticed that some struggle finding a good TDD workflow, in Clojure, with a rapid feedback cycle because of the JVM startup time. Especially the people comming from RSpec. So I wrote down my workflow, that is based on speclj, which supports auotesting and the typical "describe" "it" "should" w