From 6d0a78f61354592ce546fb41eb5eb80b5dda993b 2021-10-23 12:01:15 From: Samuel Gaist Date: 2021-10-23 12:01:15 Subject: [PATCH] [core][tests][splitinput] Remove nose --- diff --git a/IPython/core/tests/test_splitinput.py b/IPython/core/tests/test_splitinput.py index 98b4189..8969da2 100644 --- a/IPython/core/tests/test_splitinput.py +++ b/IPython/core/tests/test_splitinput.py @@ -1,38 +1,38 @@ # coding: utf-8 -import nose.tools as nt from IPython.core.splitinput import split_user_input, LineInfo from IPython.testing import tools as tt tests = [ - ('x=1', ('', '', 'x', '=1')), - ('?', ('', '?', '', '')), - ('??', ('', '??', '', '')), - (' ?', (' ', '?', '', '')), - (' ??', (' ', '??', '', '')), - ('??x', ('', '??', 'x', '')), - ('?x=1', ('', '?', 'x', '=1')), - ('!ls', ('', '!', 'ls', '')), - (' !ls', (' ', '!', 'ls', '')), - ('!!ls', ('', '!!', 'ls', '')), - (' !!ls', (' ', '!!', 'ls', '')), - (',ls', ('', ',', 'ls', '')), - (';ls', ('', ';', 'ls', '')), - (' ;ls', (' ', ';', 'ls', '')), - ('f.g(x)', ('', '', 'f.g', '(x)')), - ('f.g (x)', ('', '', 'f.g', '(x)')), - ('?%hist1', ('', '?', '%hist1', '')), - ('?%%hist2', ('', '?', '%%hist2', '')), - ('??%hist3', ('', '??', '%hist3', '')), - ('??%%hist4', ('', '??', '%%hist4', '')), - ('?x*', ('', '?', 'x*', '')), - ] -tests.append((u"Pérez Fernando", (u'', u'', u'Pérez', u'Fernando'))) + ("x=1", ("", "", "x", "=1")), + ("?", ("", "?", "", "")), + ("??", ("", "??", "", "")), + (" ?", (" ", "?", "", "")), + (" ??", (" ", "??", "", "")), + ("??x", ("", "??", "x", "")), + ("?x=1", ("", "?", "x", "=1")), + ("!ls", ("", "!", "ls", "")), + (" !ls", (" ", "!", "ls", "")), + ("!!ls", ("", "!!", "ls", "")), + (" !!ls", (" ", "!!", "ls", "")), + (",ls", ("", ",", "ls", "")), + (";ls", ("", ";", "ls", "")), + (" ;ls", (" ", ";", "ls", "")), + ("f.g(x)", ("", "", "f.g", "(x)")), + ("f.g (x)", ("", "", "f.g", "(x)")), + ("?%hist1", ("", "?", "%hist1", "")), + ("?%%hist2", ("", "?", "%%hist2", "")), + ("??%hist3", ("", "??", "%hist3", "")), + ("??%%hist4", ("", "??", "%%hist4", "")), + ("?x*", ("", "?", "x*", "")), +] +tests.append(("Pérez Fernando", ("", "", "Pérez", "Fernando"))) + def test_split_user_input(): return tt.check_pairs(split_user_input, tests) def test_LineInfo(): """Simple test for LineInfo construction and str()""" - linfo = LineInfo(' %cd /home') - nt.assert_equal(str(linfo), 'LineInfo [ |%|cd|/home]') + linfo = LineInfo(" %cd /home") + assert str(linfo) == "LineInfo [ |%|cd|/home]"