##// END OF EJS Templates
Fix autocall runs on getitem. (#14486)...
Fix autocall runs on getitem. (#14486) Closes #14483

File last commit:

r28819:8fb51573
r28820:128bd582 merge
Show More
test_splitinput.py
41 lines | 1.2 KiB | text/x-python | PythonLexer
# coding: utf-8
from IPython.core.splitinput import split_user_input, LineInfo
import pytest
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*", "")),
("Pérez Fernando", ("", "", "Pérez", " Fernando")),
]
@pytest.mark.parametrize("input, output", tests)
def test_split_user_input(input, output):
assert split_user_input(input) == output
def test_LineInfo():
"""Simple test for LineInfo construction and str()"""
linfo = LineInfo(" %cd /home")
assert str(linfo) == "LineInfo [ |%|cd|/home]"