1
0
forked from VimPlug/jedi

Reduce args for RefactoringCase

This commit is contained in:
Takafumi Arakaki
2013-03-10 22:58:48 +01:00
parent 2362e290d8
commit 9791f04555

View File

@@ -19,14 +19,13 @@ from jedi import refactoring
class RefactoringCase(object): class RefactoringCase(object):
def __init__(self, name, source, line_nr, index, path, f_name, def __init__(self, name, source, line_nr, index, path,
new_name, start_line_test, desired): new_name, start_line_test, desired):
self.name = name self.name = name
self.source = source self.source = source
self.line_nr = line_nr self.line_nr = line_nr
self.index = index self.index = index
self.path = path self.path = path
self.f_name = f_name
self.new_name = new_name self.new_name = new_name
self.start_line_test = start_line_test self.start_line_test = start_line_test
self.desired = desired self.desired = desired
@@ -87,8 +86,8 @@ def collect_file_tests(source, f_name, lines_to_execute):
if lines_to_execute and line_nr - 1 not in lines_to_execute: if lines_to_execute and line_nr - 1 not in lines_to_execute:
continue continue
path = os.path.abspath(refactoring_test_dir + os.path.sep + f_name) path = os.path.join(os.path.abspath(refactoring_test_dir), f_name)
yield RefactoringCase(name, source, line_nr, index, path, f_name, yield RefactoringCase(name, source, line_nr, index, path,
new_name, start_line_test, second) new_name, start_line_test, second)