MCPcopy Create free account
hub / github.com/Distributive-Network/PythonMonkey / test_insert_list

Function test_insert_list

tests/python/test_lists.py:439–442  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

437
438
439def test_insert_list():
440 a = pm.eval("[1,2]")
441 a.insert(0, [3, 4])
442 assert a == [[3, 4], 1, 2]
443
444
445def test_insert_boolean():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected