3fcfb09127585f25b9490cf9265a89ebbd729e08,tests/python/pants_test/option/test_arg_splitter.py,ArgSplitterTest,ArgSplitterTest_1,#,15
Before Change
class ArgSplitterTest(unittest.TestCase):
_known_scopes = ["compile", "compile.java", "compile.scala", "test", "test.junit"]
def _split(self, args_str, expected_goals, expected_scope_to_flags, expected_target_specs,
expected_passthru=None, expected_passthru_owner=None,
expected_is_help=False, expected_help_advanced=False, expected_help_all=False):
After Change
class ArgSplitterTest(unittest.TestCase):
_known_scope_infos = [goal("compile"), task("compile.java"), task("compile.scala"),
global_subsys("jvm"), task_subsys("jvm.test.junit"),
global_subsys("reporting"), goal("test"), task("test.junit")]
def _split(self, args_str, expected_goals, expected_scope_to_flags, expected_target_specs,
expected_passthru=None, expected_passthru_owner=None,
expected_is_help=False, expected_help_advanced=False, expected_help_all=False):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: pantsbuild/pants
Commit Name: 3fcfb09127585f25b9490cf9265a89ebbd729e08
Time: 2015-07-13
Author: benjyw@gmail.com
File Name: tests/python/pants_test/option/test_arg_splitter.py
Class Name: ArgSplitterTest
Method Name: ArgSplitterTest_1
Project Name: pantsbuild/pants
Commit Name: c25d203200b97e54c3a590b107422303fcac93db
Time: 2015-10-29
Author: benjyw@gmail.com
File Name: tests/python/pants_test/option/test_options.py
Class Name: OptionsTest
Method Name: test_shadowing
Project Name: pantsbuild/pants
Commit Name: 6376bc98b423073f22112e7307852ff472d4b165
Time: 2015-07-10
Author: benjyw@gmail.com
File Name: tests/python/pants_test/option/test_options.py
Class Name: OptionsTest
Method Name: OptionsTest_1