summaryrefslogtreecommitdiff
path: root/src/luacov.lua
blob: 8c8ce45fbb8340f3a4f1c9ae38cf5c4f802ee83b (plain)
1
2
3
4
5
6
7
8
--- Loads `luacov.runner` and immediately starts it.
-- Useful for launching scripts from the command-line. Returns the `luacov.runner` module.
-- @class module
-- @name luacov
-- @usage lua -lluacov sometest.lua
local runner = require("luacov.runner")
runner.init()
return runner