diff options
| author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-04-27 23:38:42 +0900 |
|---|---|---|
| committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-04-27 23:38:42 +0900 |
| commit | 8fda21099d33696b84318c51e22a807cda9f32da (patch) | |
| tree | 88b1f68a8caa38652584a785314cd8172af8308a /tests/test_quickstart.py | |
| parent | 8d5d70ba62c4138c52bba3c640a00b964ffa82c1 (diff) | |
| download | sphinx-git-8fda21099d33696b84318c51e22a807cda9f32da.tar.gz | |
Remove deprecated testing utilities
Diffstat (limited to 'tests/test_quickstart.py')
| -rw-r--r-- | tests/test_quickstart.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 6195e6216..370a4f52f 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -16,8 +16,6 @@ from six import PY2, text_type, StringIO from six.moves import input import pytest -from util import SkipTest - from sphinx import application from sphinx import quickstart as qs from sphinx.util.console import nocolor, coloron @@ -121,7 +119,7 @@ def test_do_prompt_with_nonascii(): try: qs.do_prompt(d, 'k1', 'Q1', default=u'\u65e5\u672c') except UnicodeEncodeError: - raise SkipTest( + raise pytest.skip.Exception( 'non-ASCII console input not supported on this encoding: %s', qs.TERM_ENCODING) assert d['k1'] == u'\u30c9\u30a4\u30c4' |
