blob: 80f04ffb5214c8af52c6fb3c30365f819cdb3bb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
-- Dummy test file for including files with 0% coverage in the luacov report
local test_env = require("spec.util.test_env")
local testing_paths = test_env.testing_paths
test_env.unload_luarocks()
local runner = require("luacov.runner")
runner.init(testing_paths.testrun_dir .. "/luacov.config")
require("luarocks.build.cmake")
require("luarocks.build.command")
require("luarocks.tools.tar")
require("luarocks.fetch.cvs")
require("luarocks.fetch.git_file")
require("luarocks.fetch.git_https")
require("luarocks.fetch.git_ssh")
require("luarocks.fetch.hg_http")
require("luarocks.fetch.hg_https")
require("luarocks.fetch.hg_ssh")
require("luarocks.fetch.hg")
require("luarocks.fetch.sscm")
require("luarocks.fetch.svn")
runner.shutdown()
|