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

Function test_insert_none

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

Source from the content-addressed store, hash-verified

467
468
469def test_insert_none():
470 a = pm.eval("[1,2]")
471 a.insert(0, None)
472 assert a == [None, 1, 2]
473
474
475def test_insert_function():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected