04b47d1952aebc2d14a9c7cefcbf521746de50e7,bokeh/command/tests/test_subcommand.py,,test_missing_args,#,15
Before Change
def test_missing_args():
p = MagicMock()
obj = _Good(p)
p.add_argument.assert_not_called()
def test_no_args():
_Good.args = ()
After Change
def test_missing_args():
p = MagicMock()
_Good(p)
p.add_argument.assert_not_called()
def test_no_args():
_Good.args = ()
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 3
Instances
Project Name: bokeh/bokeh
Commit Name: 04b47d1952aebc2d14a9c7cefcbf521746de50e7
Time: 2015-11-30
Author: bryanv@continuum.io
File Name: bokeh/command/tests/test_subcommand.py
Class Name:
Method Name: test_missing_args
Project Name: bokeh/bokeh
Commit Name: 04b47d1952aebc2d14a9c7cefcbf521746de50e7
Time: 2015-11-30
Author: bryanv@continuum.io
File Name: bokeh/command/tests/test_subcommand.py
Class Name:
Method Name: test_one_arg
Project Name: bokeh/bokeh
Commit Name: 04b47d1952aebc2d14a9c7cefcbf521746de50e7
Time: 2015-11-30
Author: bryanv@continuum.io
File Name: bokeh/command/tests/test_subcommand.py
Class Name:
Method Name: test_no_args
Project Name: bokeh/bokeh
Commit Name: 04b47d1952aebc2d14a9c7cefcbf521746de50e7
Time: 2015-11-30
Author: bryanv@continuum.io
File Name: bokeh/command/tests/test_subcommand.py
Class Name:
Method Name: test_args