615
615
def test_get_help_text_with_additional_see_also(self):
616
616
mod = FakeModule('two lines of help\nand more', 'demo')
617
617
topic = plugin.ModuleHelpTopic(mod)
621
621
def test_get_help_topic(self):
622
622
"""The help topic for a plugin is its module name."""
623
623
mod = FakeModule('two lines of help\nand more', 'bzrlib.plugins.demo')
624
624
topic = plugin.ModuleHelpTopic(mod)
625
625
self.assertEqual('demo', topic.get_help_topic())
628
627
topic = plugin.ModuleHelpTopic(mod)
629
628
self.assertEqual('foo_bar', topic.get_help_topic())