Im writing my first test using enit in erlang. I managed to make some progress except that Im facing this error
exit:{noproc,
{gen_server,call,
[httpc_manager,
{request,
{request,undefined,<0.1634.0>,0,http,
{"ody-staging-chatapi.toprpggame.com",80},
"/",[],post,{...},...}},
infinity]}}
I googled and found that we have to start inets like inets:start() and I placed that in my setup function but that did not solve the problem. Is there anything Im missing. Basically, Im calling httpc:request in my test and so the error.
Thanks for any inputs.