On Mon, May 16, 2022 at 3:48 PM 'Daniel Latypov' via KUnit Development kunit-dev@googlegroups.com wrote:
Our main function currently has an optional `linux` argument which is used to by our unit tests to inject a mock. We currently have the same code copy-pasted several times to do if not linux: linux = MakeRealInstance(cli_args.foo, cli_args.bar, ...)
But in python, dependency injection isn't necessary or idiomatic when we can just use mock.patch() to mock things out.
This change
- adds a helper to create a LinuxSourceTree from the cli_args
- drops the `linux` parameter in favor of mocking the __init__ func.
Signed-off-by: Daniel Latypov dlatypov@google.com
Reviewed-by: Brendan Higgins brendanhiggins@google.com