lunarmodules / luacov

LuaCov is a simple coverage analyzer for Lua code.
http://lunarmodules.github.io/luacov/
MIT License
300 stars 68 forks source link

The require statements are not being covered #111

Open uniqhemant opened 9 months ago

uniqhemant commented 9 months ago

The require statements written in a lua module are not shown as covered. Example below - local inventory = {} local error_handler = require "error_handler" local logger = require "utils.logger"

The functions defined in the same lua module are correctly being reported Covered.

Either those should not be considered for coverage at all or it should be shown as covered.