Sometimes, e.g. in https://coveralls.io/builds/72047139, code coverage tool does not count lines with implicit returns as covered, like
function f()
0 # uncovered
end
But it works if return explicitly, e.g.
function f()
return 0 # covered
end
To investigate later
Sometimes, e.g. in https://coveralls.io/builds/72047139, code coverage tool does not count lines with implicit returns as covered, like
But it works if return explicitly, e.g.
To investigate later