aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/dummy_spec.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/spec/dummy_spec.lua b/spec/dummy_spec.lua
new file mode 100644
index 00000000..80f04ffb
--- /dev/null
+++ b/spec/dummy_spec.lua
@@ -0,0 +1,25 @@
1-- Dummy test file for including files with 0% coverage in the luacov report
2
3local test_env = require("spec.util.test_env")
4local testing_paths = test_env.testing_paths
5
6test_env.unload_luarocks()
7
8local runner = require("luacov.runner")
9runner.init(testing_paths.testrun_dir .. "/luacov.config")
10
11require("luarocks.build.cmake")
12require("luarocks.build.command")
13require("luarocks.tools.tar")
14require("luarocks.fetch.cvs")
15require("luarocks.fetch.git_file")
16require("luarocks.fetch.git_https")
17require("luarocks.fetch.git_ssh")
18require("luarocks.fetch.hg_http")
19require("luarocks.fetch.hg_https")
20require("luarocks.fetch.hg_ssh")
21require("luarocks.fetch.hg")
22require("luarocks.fetch.sscm")
23require("luarocks.fetch.svn")
24
25runner.shutdown()