mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-19 21:28:28 +02:00
23 lines
440 B
Go
23 lines
440 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) GetBool(key string) bool {
|
||
|
return isTruthy(self.Get(key))
|
||
|
}
|