diff options
author | roboo <robo.karasek@gmail.com> | 2016-07-19 22:56:28 +0200 |
---|---|---|
committer | roboo <robo.karasek@gmail.com> | 2016-07-19 22:56:28 +0200 |
commit | 3945f90b0bd80024294b048a793bae526cad30e2 (patch) | |
tree | c7658afc65573b60db6f94e0f4c9cbcb6fada343 /spec/help_spec.lua | |
parent | 2af8f114097b2e79d7f92f9b0cea4cacdc2ff853 (diff) | |
download | luarocks-3945f90b0bd80024294b048a793bae526cad30e2.tar.gz luarocks-3945f90b0bd80024294b048a793bae526cad30e2.tar.bz2 luarocks-3945f90b0bd80024294b048a793bae526cad30e2.zip |
Test improvements
Diffstat (limited to 'spec/help_spec.lua')
-rw-r--r-- | spec/help_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/help_spec.lua b/spec/help_spec.lua index 0d41e2e9..88aa5030 100644 --- a/spec/help_spec.lua +++ b/spec/help_spec.lua | |||
@@ -10,7 +10,7 @@ describe("LuaRocks help tests #blackbox #b_help", function() | |||
10 | end) | 10 | end) |
11 | 11 | ||
12 | it("LuaRocks help with no flags/arguments", function() | 12 | it("LuaRocks help with no flags/arguments", function() |
13 | assert.is_true(run.luarocks_bool("help")) | 13 | assert.is_true(run.luarocks_bool(test_env.quiet("help"))) |
14 | end) | 14 | end) |
15 | 15 | ||
16 | it("LuaRocks help invalid argument", function() | 16 | it("LuaRocks help invalid argument", function() |
@@ -18,10 +18,10 @@ describe("LuaRocks help tests #blackbox #b_help", function() | |||
18 | end) | 18 | end) |
19 | 19 | ||
20 | it("LuaRocks help config", function() | 20 | it("LuaRocks help config", function() |
21 | assert.is_true(run.luarocks_bool("help config")) | 21 | assert.is_true(run.luarocks_bool(test_env.quiet("help config"))) |
22 | end) | 22 | end) |
23 | 23 | ||
24 | it("LuaRocks-admin help with no flags/arguments", function() | 24 | it("LuaRocks-admin help with no flags/arguments", function() |
25 | assert.is_true(run.luarocks_admin_bool("help")) | 25 | assert.is_true(run.luarocks_admin_bool(test_env.quiet("help"))) |
26 | end) | 26 | end) |
27 | end) | 27 | end) |