mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
25 lines
855 B
Go
25 lines
855 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/commands/oscommands"
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
"github.com/jesseduffield/lazygit/pkg/i18n"
|
|
"github.com/jesseduffield/lazygit/pkg/utils"
|
|
)
|
|
|
|
// NewDummyGitCommand creates a new dummy GitCommand for testing
|
|
func NewDummyGitCommand() *GitCommand {
|
|
return NewDummyGitCommandWithOSCommand(oscommands.NewDummyOSCommand())
|
|
}
|
|
|
|
// NewDummyGitCommandWithOSCommand creates a new dummy GitCommand for testing
|
|
func NewDummyGitCommandWithOSCommand(osCommand *oscommands.OSCommand) *GitCommand {
|
|
return &GitCommand{
|
|
Log: utils.NewDummyLog(),
|
|
OSCommand: osCommand,
|
|
Tr: i18n.NewTranslationSet(utils.NewDummyLog()),
|
|
Config: config.NewDummyAppConfig(),
|
|
getGitConfigValue: func(string) (string, error) { return "", nil },
|
|
}
|
|
}
|