Re: Files in Clojure Google Groups

2008-11-02 Thread Justin Giancola
Rather than changing where the files are stored, it might be easier to create an annotations page on the wiki that just links to the Google Groups files. Justin On Oct 31, 10:34 am, Stuart Sierra <[EMAIL PROTECTED]> wrote: > Does the wiki accept file uploads? > -S > > On Oct 31, 7:46 am, Rich H

Re: Stubbing macro for isolated unit tests

2008-11-23 Thread Justin Giancola
Neat. I noticed that you're forcing the arg lists into vectors in both make-maps and in stubfn. Since they're not being manipulated at all, you could just as easily leave them as seqs and everything will still work. It might be a bit clearer to use reduce instead of map and merge to generate the

Re: Stubbing macro for isolated unit tests

2008-11-24 Thread Justin Giancola
On Nov 23, 9:56 pm, James Reeves <[EMAIL PROTECTED]> wrote: > On Nov 23, 11:58 pm, Justin Giancola <[EMAIL PROTECTED]> > wrote: > > > Neat. I noticed that you're forcing the arg lists into vectors in both > > make-maps and in stubfn. Since they're not b