Add test for BackendError
This commit is contained in:
parent
5f5b395343
commit
fa7f9955a3
@ -19,6 +19,7 @@
|
|||||||
"""Tests for qutebrowser.config.configexc."""
|
"""Tests for qutebrowser.config.configexc."""
|
||||||
|
|
||||||
from qutebrowser.config import configexc
|
from qutebrowser.config import configexc
|
||||||
|
from qutebrowser.utils import usertypes
|
||||||
|
|
||||||
|
|
||||||
def test_validation_error():
|
def test_validation_error():
|
||||||
@ -46,3 +47,8 @@ def test_interpolation_syntax_error():
|
|||||||
assert e.section == 'sect'
|
assert e.section == 'sect'
|
||||||
assert e.option == 'opt'
|
assert e.option == 'opt'
|
||||||
assert str(e) == 'msg'
|
assert str(e) == 'msg'
|
||||||
|
|
||||||
|
|
||||||
|
def test_backend_error():
|
||||||
|
e = configexc.BackendError(usertypes.Backend.QtWebKit)
|
||||||
|
assert str(e) == "This setting is not available with the QtWebKit backend!"
|
||||||
|
Loading…
Reference in New Issue
Block a user