MCPcopy Create free account
hub / github.com/ipython/ipython / test_find_assign_system

Function test_find_assign_system

IPython/core/tests/test_inputtransformer2.py:184–189  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

182 check_transform(ipt2.MagicAssign, MULTILINE_MAGIC_ASSIGN)
183
184def test_find_assign_system():
185 check_find(ipt2.SystemAssign, MULTILINE_SYSTEM_ASSIGN)
186 check_find(ipt2.SystemAssign, MULTILINE_SYSTEM_ASSIGN_AFTER_DEDENT)
187 check_find(ipt2.SystemAssign, (["a = !ls\n"], (1, 5), None))
188 check_find(ipt2.SystemAssign, (["a=!ls\n"], (1, 2), None))
189 check_find(ipt2.SystemAssign, MULTILINE_MAGIC_ASSIGN, match=False)
190
191def test_transform_assign_system():
192 check_transform(ipt2.SystemAssign, MULTILINE_SYSTEM_ASSIGN)

Callers

nothing calls this directly

Calls 1

check_findFunction · 0.85

Tested by

no test coverage detected