We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e3931b6 + dd5279c commit cce94ebCopy full SHA for cce94eb
PythonScript/python_tests/tests/NotepadWrapperTestCase.py
@@ -1408,6 +1408,12 @@ def start_monitor():
1408
self.assertIsNone(notepad.triggerTabbarContextMenu(0,0))
1409
1410
1411
+ def test_getPluginHomePath(self):
1412
+ ''' Check if string plugins is the last part of the returned path '''
1413
+ self.__test_invalid_parameter_passed(notepad.getPluginHomePath)
1414
+ _, _, plugin_dir = notepad.getPluginHomePath().rpartition('\\')
1415
+ self.assertTrue('plugins' == plugin_dir)
1416
+
1417
1418
if __name__ == '__main__':
1419
suite = unittest.TestLoader().loadTestsFromTestCase(NotepadTestCase)
0 commit comments