Re: midje only 1 test

2015-09-12 Thread Brian Marick
Roland Kaercher wrote: I *strongly* recommend doing all your testing in a repl buffer. That given, there are two ways to solve your problem. The first, which I prefer, is to start by testing everything: (use 'midje.repl) (autotest) Other than having a REPL, is

Re: midje only 1 test

2015-09-12 Thread Roland Kaercher
Hi, if you're using emacs with cider for development you can easily execute a single test by putting the cursor after the fact and pressing C-x C-e (which evaluates the expression and returns a boolean value) or using midje-mode which has the advantage that failures are explained inline.

Re: midje only 1 test

2015-09-06 Thread Atamert Ölçgen
Hi Brian, On Sun, Sep 6, 2015 at 1:19 AM, Brian Marick wrote: > I *strongly* recommend doing all your testing in a repl buffer. That > given, there are two ways to solve your problem. The first, which I prefer, > is to start by testing everything: > > (use 'midje.repl)

Re: midje only 1 test

2015-09-05 Thread Brian Marick
I *strongly* recommend doing all your testing in a repl buffer. That given, there are two ways to solve your problem. The first, which I prefer, is to start by testing everything: (use 'midje.repl) (autotest) Then, when you change any text and save the namespace it's in, all tests

midje only 1 test

2015-09-03 Thread r/ Wobben
hello, Suppose I have this test (facts "do-a-thing" {:exercise 1 :points 1} (do-a-thing 3) => 46656.0 ( do-a-thing 1) => 4.0 (do-a-thing 0) => 1.0) Is there a way I can only run this test I tried lein midje :filter exercise 1 but that one fails. Roelof -- You received this message