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