diff options
author | Hisham <hisham@gobolinux.org> | 2016-10-27 14:31:45 -0200 |
---|---|---|
committer | Hisham <hisham@gobolinux.org> | 2016-10-27 14:31:45 -0200 |
commit | 5137884ef5ec78d1922a85691eefea48d6391c76 (patch) | |
tree | 76a4d741ef85cfa4a07a5b2ef096410236a24847 /spec/show_spec.lua | |
parent | 518e3b4f49f95a345d5f93600c85ce61b0f9fc41 (diff) | |
parent | f7ae6213f430798ec86883f9ab9917b156e1758d (diff) | |
download | luarocks-5137884ef5ec78d1922a85691eefea48d6391c76.tar.gz luarocks-5137884ef5ec78d1922a85691eefea48d6391c76.tar.bz2 luarocks-5137884ef5ec78d1922a85691eefea48d6391c76.zip |
Merge branch 'master' into luarocks-3
Diffstat (limited to 'spec/show_spec.lua')
-rw-r--r-- | spec/show_spec.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/show_spec.lua b/spec/show_spec.lua index b95ea818..0b046de0 100644 --- a/spec/show_spec.lua +++ b/spec/show_spec.lua | |||
@@ -22,6 +22,11 @@ describe("LuaRocks show tests #blackbox #b_show", function() | |||
22 | local output = run.luarocks("show luacov") | 22 | local output = run.luarocks("show luacov") |
23 | assert.is.truthy(output:match("LuaCov")) | 23 | assert.is.truthy(output:match("LuaCov")) |
24 | end) | 24 | end) |
25 | |||
26 | it("LuaRocks show luacov with uppercase name", function() | ||
27 | local output = run.luarocks("show LuaCov") | ||
28 | assert.is.truthy(output:match("LuaCov")) | ||
29 | end) | ||
25 | 30 | ||
26 | it("LuaRocks show modules of luacov", function() | 31 | it("LuaRocks show modules of luacov", function() |
27 | local output = run.luarocks("show --modules luacov") | 32 | local output = run.luarocks("show --modules luacov") |