I have some problem with the EUnit fixture {setup, Setup, Clearup, Instanciator}.<br><br>From the doc, I understand that the Instanciator should get the value return by the Setup.<br>But in the following case, the test fail because assertion is "undefined == foo".
<br>Am I missing something?<br>(EUnit version that I'm using is from SVN <a href="http://svn.process-one.net/contribs/trunk/eunit">http://svn.process-one.net/contribs/trunk/eunit</a>)<br><br>simple_init() -><br> foo.
<br>simple_close(R) -><br> R.<br>simple_do(R) -><br> ?assert(R == foo).<br>simple_test_() -><br> {<br> setup,<br> fun simple_init/0,<br> fun simple_close/1,<br> fun simple_do/1
<br> }.<br>