(pushDefault git.PushDefault, err error)
| 944 | } |
| 945 | |
| 946 | func stubPushDefault(pushDefault git.PushDefault, err error) func(context.Context) (git.PushDefault, error) { |
| 947 | return func(_ context.Context) (git.PushDefault, error) { |
| 948 | return pushDefault, err |
| 949 | } |
| 950 | } |
| 951 | |
| 952 | func stubRemotePushDefault(remotePushDefault string, err error) func(context.Context) (string, error) { |
| 953 | return func(_ context.Context) (string, error) { |
no outgoing calls
no test coverage detected