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