33
26
from bzrlib.selftest import TestCaseInTempDir
36
28
class PluginTest(TestCaseInTempDir):
37
29
"""Create an external plugin and test loading."""
38
30
def test_plugin_loading(self):
43
33
f = open(os.path.join('plugin_test', 'myplug.py'), 'wt')
48
37
assert newhelp.startswith('You have been overridden\n')
49
38
# We added a line, but the rest should work
50
39
assert newhelp[25:] == help