def test_find_occurrences(self): # Find occurrences of the Foo class occ = findit.find_occurrences( self.proj, 8, 'basic/foo.py') self.assertEqual(len(occ), 3)
def findit_occurences_view(): from traad.rope.findit import find_occurrences args = request.json data = find_occurrences(project, args['offset'], args['path']) # TODO: What if it actually fails? return { 'result': 'success', 'data': data, }