Skip to content

Commit 94d0081

Browse files
fix(cli): Hack around cliargs quirk to handle "help" flag correctly (#732)
Co-authored-by: Caleb Maclennan <[email protected]>
1 parent a2c755b commit 94d0081

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

busted/modules/cli.lua

+4
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ return function(options)
168168
-- Parse the cli arguments
169169
local cliArgs, cliErr = cli:parse(args)
170170
if not cliArgs then
171+
if cliErr:match("^Usage") then
172+
return { help = true, helpText = cliErr }, nil
173+
end
174+
171175
return nil, appName .. ': error: ' .. cliErr .. '; re-run with --help for usage.'
172176
end
173177

busted/runner.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,14 @@ return function(options)
4141
exit(1, forceExit)
4242
end
4343

44+
if cliArgs.help then
45+
io.stdout:write(cliArgs.helpText .. '\n')
46+
exit(0, forceExit)
47+
end
48+
4449
if cliArgs.version then
4550
-- Return early if asked for the version
46-
print(busted.version)
51+
io.stdout:write(busted.version .. '\n')
4752
exit(0, forceExit)
4853
end
4954

spec/cl_spec.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ describe('Tests the busted command-line options', function()
219219

220220
it('tests running with --help specified', function()
221221
local success, _ = executeBusted('--help')
222-
assert.is_false(success)
222+
assert.is_true(success)
223223
end)
224224

225225
it('tests running a non-compiling testfile', function()
@@ -353,7 +353,7 @@ describe('Test busted running standalone', function()
353353

354354
it('tests running with --help specified', function()
355355
local success = executeLua('spec/cl_standalone.lua --help')
356-
assert.is_false(success)
356+
assert.is_true(success)
357357
end)
358358

359359
it('tests running via stdin', function()

0 commit comments

Comments
 (0)