summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git_config/fake_git_config.go
blob: f010efd8cebd4341109d79726fe0c2d912d160e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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))
}