Source code for tests.processor.test_help

from bugscpp.command import CommandList, HelpCommand


[docs]def test_check_help_attr(): commands = CommandList() assert "help" in commands
[docs]def test_check_help_help(): helpCommand = HelpCommand() assert helpCommand.help == "Display help messages"
[docs]def test_check_help_run(): helpCommand = HelpCommand() assert helpCommand.run([])