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