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