aboutsummaryrefslogtreecommitdiff
path: root/spec/remove_spec.lua
diff options
context:
space:
mode:
authorHisham <hisham@gobolinux.org>2016-10-27 14:31:45 -0200
committerHisham <hisham@gobolinux.org>2016-10-27 14:31:45 -0200
commit5137884ef5ec78d1922a85691eefea48d6391c76 (patch)
tree76a4d741ef85cfa4a07a5b2ef096410236a24847 /spec/remove_spec.lua
parent518e3b4f49f95a345d5f93600c85ce61b0f9fc41 (diff)
parentf7ae6213f430798ec86883f9ab9917b156e1758d (diff)
downloadluarocks-5137884ef5ec78d1922a85691eefea48d6391c76.tar.gz
luarocks-5137884ef5ec78d1922a85691eefea48d6391c76.tar.bz2
luarocks-5137884ef5ec78d1922a85691eefea48d6391c76.zip
Merge branch 'master' into luarocks-3
Diffstat (limited to 'spec/remove_spec.lua')
-rw-r--r--spec/remove_spec.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/spec/remove_spec.lua b/spec/remove_spec.lua
index 3d321e30..03b3681e 100644
--- a/spec/remove_spec.lua
+++ b/spec/remove_spec.lua
@@ -35,12 +35,19 @@ describe("LuaRocks remove tests #blackbox #b_remove", function()
35 assert.is_false(run.luarocks_bool("remove luacov --deps-mode")) 35 assert.is_false(run.luarocks_bool("remove luacov --deps-mode"))
36 end) 36 end)
37 37
38 it("LuaRocks remove builded abelhas", function() 38 it("LuaRocks remove built abelhas", function()
39 assert.is_true(run.luarocks_bool("build abelhas 1.0")) 39 assert.is_true(run.luarocks_bool("build abelhas 1.0"))
40 assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/luarocks/rocks/abelhas")) 40 assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/luarocks/rocks/abelhas"))
41 assert.is_true(run.luarocks_bool("remove abelhas 1.0")) 41 assert.is_true(run.luarocks_bool("remove abelhas 1.0"))
42 assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/luarocks/rocks/abelhas")) 42 assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/luarocks/rocks/abelhas"))
43 end) 43 end)
44
45 it("LuaRocks remove built abelhas with uppercase name", function()
46 assert.is_true(run.luarocks_bool("build abelhas 1.0"))
47 assert.is.truthy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/luarocks/rocks/abelhas"))
48 assert.is_true(run.luarocks_bool("remove Abelhas 1.0"))
49 assert.is.falsy(lfs.attributes(testing_paths.testing_sys_tree .. "/lib/luarocks/rocks/abelhas"))
50 end)
44 end) 51 end)
45 52
46 describe("LuaRocks remove more complex tests", function() 53 describe("LuaRocks remove more complex tests", function()