(*args, **kwargs)
| 30 | |
| 31 | def test_local_shell_component_decodes_utf8_output(monkeypatch): |
| 32 | def fake_run(*args, **kwargs): |
| 33 | _ = args, kwargs |
| 34 | return _FakePopen(stdout="技能内容".encode()) |
| 35 | |
| 36 | monkeypatch.setattr(subprocess, "Popen", fake_run) |
| 37 |
nothing calls this directly
no test coverage detected