On Nov 13, 5:49 pm, Larrytheliquid <[EMAIL PROTECTED]> wrote: > I'm porting RSpec to Clojure and would appreciate any syntax > recommendations:http://paste.lisp.org/display/70313
This expression is not very 'lispy': (=> (conj my-vec 1) should = [1]) Perhaps it should be: (should = (conj my-vec 1) [1]) Or: (should (= (conj my-vec 1) [1])) - James --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---
