()
| 19 | |
| 20 | |
| 21 | def test_get_shell_embed_func(): |
| 22 | shell = get_shell_embed_func(["invalid"]) |
| 23 | assert shell is None |
| 24 | |
| 25 | shell = get_shell_embed_func(["invalid", "python"]) |
| 26 | assert callable(shell) |
| 27 | assert shell.__name__ == "_embed_standard_shell" |
| 28 | |
| 29 | |
| 30 | @pytest.mark.skipif(not bpy, reason="bpython not available in testenv") |
nothing calls this directly
no test coverage detected