aboutsummaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/config_spec.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/config_spec.lua b/spec/config_spec.lua
index 2e76ae0c..f4a793c4 100644
--- a/spec/config_spec.lua
+++ b/spec/config_spec.lua
@@ -170,6 +170,27 @@ describe("LuaRocks config tests #integration", function()
170 end) 170 end)
171 end) 171 end)
172 172
173 describe("unset config keys", function()
174 it("unsets a simple config key", function()
175 test_env.run_in_tmp(function(tmpdir)
176 local myproject = tmpdir .. "/myproject"
177 lfs.mkdir(myproject)
178 lfs.chdir(myproject)
179
180 assert(run.luarocks("init"))
181 assert.truthy(run.luarocks_bool("config my_var my_value"))
182
183 local output = run.luarocks("config my_var")
184 assert.match("my_value", output)
185
186 assert.truthy(run.luarocks_bool("config my_var --unset"))
187
188 output = run.luarocks("config my_var")
189 assert.not_match("my_value", output)
190 end, finally)
191 end)
192 end)
193
173 describe("write config keys", function() 194 describe("write config keys", function()
174 it("rejects invalid --scope", function() 195 it("rejects invalid --scope", function()
175 assert.is_false(run.luarocks_bool("config web_browser foo --scope=foo")) 196 assert.is_false(run.luarocks_bool("config web_browser foo --scope=foo"))