Lines Matching refs:test_path
324 test_path = None
325 self.assertEqual(None, ide_obj._get_application_path(test_path))
327 test_path = 'a/b/c/d-e/f-gh/foo'
328 self.assertEqual(None, ide_obj._get_application_path(test_path))
330 test_path = 'a/b/c/d/intellij/foo'
331 self.assertEqual(None, ide_obj._get_application_path(test_path))
333 test_path = 'a/b/c/d/intellij-efg/foo'
334 self.assertEqual(None, ide_obj._get_application_path(test_path))
336 test_path = 'a/b/c/d/intellij-efg-hi/foo'
337 self.assertEqual(None, ide_obj._get_application_path(test_path))
339 test_path = 'a/b/c/d/intellij-ce-303/foo'
340 self.assertEqual('.IdeaIC303', ide_obj._get_application_path(test_path))
342 test_path = 'a/b/c/d/intellij-ue-303/foo'
344 test_path))