diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2018-04-16 18:00:19 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2018-05-07 19:27:37 -0300 |
commit | fdc51baae37c3232f6051db0e58ebefca8fdfdc7 (patch) | |
tree | 296ef6fc68fabd34a6f6d88b528567226eadb321 /src/bin | |
parent | 4dfd5a5501973890af7d9842b190ad01dd5f5b1e (diff) | |
download | luarocks-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-x | src/bin/luarocks | 1 |
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 | ||
34 | command_line.run_command(...) | 35 | command_line.run_command(...) |