2021-10-23 00:52:19 +02:00
|
|
|
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]
|
|
|
|
}
|
|
|
|
|
2022-01-07 11:17:23 +02:00
|
|
|
func (self *FakeGitConfig) GetGeneral(args string) string {
|
|
|
|
if self.mockResponses == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return self.mockResponses[args]
|
|
|
|
}
|
|
|
|
|
2021-10-23 00:52:19 +02:00
|
|
|
func (self *FakeGitConfig) GetBool(key string) bool {
|
|
|
|
return isTruthy(self.Get(key))
|
|
|
|
}
|