This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-12-19
Channels
- # admin-announcements (27)
- # beginners (12)
- # boot (168)
- # cider (4)
- # clojure (27)
- # clojure-art (3)
- # clojure-austria (1)
- # clojure-russia (10)
- # clojurescript (50)
- # datomic (10)
- # editors (2)
- # hoplon (51)
- # ldnclj (26)
- # liberator (1)
- # off-topic (7)
- # om (23)
- # parinfer (6)
- # proton (7)
- # reagent (17)
- # yada (1)
anyone aware of a tool like this for clojure? https://github.com/github/scientist
For those who use prismatic schema, do you activate the parameter and return type validation for function? Right now, I am using it for documenting purposes only, should I enable validation too? Are there some guidelines about this?
@rcanepa: I would enable during test/dev, disable during prod, except when you're validating data from outside
rcanepa: that's what I do as well
you can always turn on individual functions if you have special concerns for any reason
tmtwd: list-of-values looks like you could just use map probably?
(map #(my-eval % env) exps)
loop/recur is usually not what you want
w0000h
Has anyone configured lein autoexpect (plugin for the expectations library) to work with environ?. When I execute lein test, my test are executed using my test database, however, when I run lein autoexpect, the dev database is used. I haven’t found any documentation of how to accomplish this, does anyone knows how to do it?
@rcanepa Probably has something to do with what leiningen profiles are being activated. Is your test database configured in a :test
profile? Try a lein with-profiles +test autoexpect
(author of autoexpect here).