95
95
def test_get_help_topic(self):
96
96
"""The help topic for a Command is its name()."""
97
97
class cmd_foo_bar(commands.Command):
100
100
self.assertEqual(cmd.name(), cmd.get_help_topic())
102
102
def test_formatted_help_text(self):
103
103
"""Help text should be plain text by default."""
104
104
class cmd_Demo(commands.Command):