コード例 #1
0
ファイル: test_bark.py プロジェクト: 4degrees/sawmill
def test_custom_configure():
    '''Test configure helper with specific configurator.'''
    configurators = {'other': mock.Mock()}
    with mock.patch.dict(
        sawmill.configurators, configurators, clear=True
    ):
        sawmill.configure(configurator='other')
        assert configurators['other'].called
コード例 #2
0
ファイル: test_bark.py プロジェクト: 4degrees/sawmill
def test_default_configure():
    '''Test configure helper with no arguments.'''
    configurators = {'classic': mock.Mock()}
    with mock.patch.dict(
        sawmill.configurators, configurators, clear=True
    ):
        sawmill.configure()
        assert configurators['classic'].called
コード例 #3
0
ファイル: test_bark.py プロジェクト: 4degrees/sawmill
def test_configure_with_missing_configurator():
    '''Test configure raised ValueError for missing configurator.'''
    with mock.patch.dict(sawmill.configurators, clear=True):
        with pytest.raises(ValueError):
            sawmill.configure(configurator='other')