Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 815031
Collapse All | Expand All

(-)a/tests/test_utils.py (-1 / +1 lines)
Lines 75-80 def test_echo_via_pager_env_PAGER(mock_inner, mock_tabulate, mock_config): Link Here
75
@mock.patch.object(utils, 'git_config', return_value=None)
75
@mock.patch.object(utils, 'git_config', return_value=None)
76
@mock.patch.object(utils, '_tabulate')
76
@mock.patch.object(utils, '_tabulate')
77
@mock.patch.object(utils, '_echo_via_pager')
77
@mock.patch.object(utils, '_echo_via_pager')
78
@mock.patch.dict(os.environ, {'PAGER': ''})
78
def test_echo_via_pager_env_default(mock_inner, mock_tabulate, mock_config):
79
def test_echo_via_pager_env_default(mock_inner, mock_tabulate, mock_config):
79
    utils.echo_via_pager('test', ('foo',), None)
80
    utils.echo_via_pager('test', ('foo',), None)
80
81
81
- 

Return to bug 815031