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 t

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. Kind

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) > (autotest) > Ot

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 tha