Re: Integration testing in Clojure

2014-01-31 Thread Conan Cook
Thanks for the suggstions! I've managed to fire up my app just using midje's (against-background) macro, and am hitting an H2 database as well. @ronen That cartridge library looks like just the ticket for taking the last bits offline, I'll give it a shot next week! @Nebojša/mynomoto I'll pas

Re: Integration testing in Clojure

2014-01-31 Thread mynomoto
You could also use https://github.com/semperos/clj-webdriver for integration testing. On Wednesday, January 29, 2014 1:47:15 PM UTC-2, Conan Cook wrote: > > Hi, I'm trying to decide how we should go about testing our services that > are written in Clojure. I'm used to doing this using Maven, wh

Re: Integration testing in Clojure

2014-01-31 Thread Nebojša Stričević
Hey, I had success using https://github.com/xeqi/kerodon for integration testing. Cheers, Strika On Thursday, January 30, 2014 10:41:45 PM UTC+1, ronen wrote: > > Hey Conan, I'm using midje with selectors to separate integration test > from unit test (like for example in > this

Re: Integration testing in Clojure

2014-01-30 Thread ronen
Hey Conan, I'm using midje with selectors to separate integration test from unit test (like for example in thisproject) Regarding VCR iv spotted https://github.com/sonian/cartridge which seems to offer sim