mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
22 lines
464 B
Go
22 lines
464 B
Go
package config
|
|
|
|
import (
|
|
yaml "github.com/jesseduffield/yaml"
|
|
)
|
|
|
|
// NewDummyAppConfig creates a new dummy AppConfig for testing
|
|
func NewDummyAppConfig() *AppConfig {
|
|
appConfig := &AppConfig{
|
|
Name: "lazygit",
|
|
Version: "unversioned",
|
|
Commit: "",
|
|
BuildDate: "",
|
|
Debug: false,
|
|
BuildSource: "",
|
|
UserConfig: GetDefaultConfig(),
|
|
AppState: &AppState{},
|
|
}
|
|
_ = yaml.Unmarshal([]byte{}, appConfig.AppState)
|
|
return appConfig
|
|
}
|