aboutsummaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2018-04-16 18:00:19 -0300
committerHisham Muhammad <hisham@gobolinux.org>2018-05-07 19:27:37 -0300
commitfdc51baae37c3232f6051db0e58ebefca8fdfdc7 (patch)
tree296ef6fc68fabd34a6f6d88b528567226eadb321 /src/bin
parent4dfd5a5501973890af7d9842b190ad01dd5f5b1e (diff)
downloadluarocks-fdc51baae37c3232f6051db0e58ebefca8fdfdc7.tar.gz
luarocks-fdc51baae37c3232f6051db0e58ebefca8fdfdc7.tar.bz2
luarocks-fdc51baae37c3232f6051db0e58ebefca8fdfdc7.zip
test: initial implementation of `luarocks.test`
Adds: * `luarocks test` command * `luarocks.test` module * TODO: support running test from `build` as well * `luarocks.test.busted` test backend * TODO: add test-only dependency on Busted * `luarocks.test.command` test backend
Diffstat (limited to 'src/bin')
-rwxr-xr-xsrc/bin/luarocks1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/luarocks b/src/bin/luarocks
index 491809dd..066c72e3 100755
--- a/src/bin/luarocks
+++ b/src/bin/luarocks
@@ -29,6 +29,7 @@ commands = {
29 upload = "luarocks.cmd.upload", 29 upload = "luarocks.cmd.upload",
30 config = "luarocks.cmd.config", 30 config = "luarocks.cmd.config",
31 which = "luarocks.cmd.which", 31 which = "luarocks.cmd.which",
32 test = "luarocks.cmd.test",
32} 33}
33 34
34command_line.run_command(...) 35command_line.run_command(...)