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