I am not sure the semantic meaning of the name fixit matches the semantic meaning of the function itself. Since the goal of the fixit function is to replace an existing function with a Fake, I'd find the name fakeit more appropriate to represent its actual goal.
If this change is done, the corresponding tests should also be renamed. For example, test_with_fixed_return_value should likely be renamed as test_with_fake_return_value.
I am not sure the semantic meaning of the name
fixit
matches the semantic meaning of the function itself. Since the goal of thefixit
function is to replace an existing function with aFake
, I'd find the namefakeit
more appropriate to represent its actual goal.If this change is done, the corresponding tests should also be renamed. For example,
test_with_fixed_return_value
should likely be renamed astest_with_fake_return_value
.