mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
30 lines
583 B
Go
30 lines
583 B
Go
package git_config
|
|
|
|
type FakeGitConfig struct {
|
|
mockResponses map[string]string
|
|
}
|
|
|
|
func NewFakeGitConfig(mockResponses map[string]string) *FakeGitConfig {
|
|
return &FakeGitConfig{
|
|
mockResponses: mockResponses,
|
|
}
|
|
}
|
|
|
|
func (self *FakeGitConfig) Get(key string) string {
|
|
if self.mockResponses == nil {
|
|
return ""
|
|
}
|
|
return self.mockResponses[key]
|
|
}
|
|
|
|
func (self *FakeGitConfig) GetGeneral(args string) string {
|
|
if self.mockResponses == nil {
|
|
return ""
|
|
}
|
|
return self.mockResponses[args]
|
|
}
|
|
|
|
func (self *FakeGitConfig) GetBool(key string) bool {
|
|
return isTruthy(self.Get(key))
|
|
}
|