summaryrefslogtreecommitdiff
path: root/internal/config/config_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/config_test.go')
-rw-r--r--internal/config/config_test.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/internal/config/config_test.go b/internal/config/config_test.go
index b436e93..60277f4 100644
--- a/internal/config/config_test.go
+++ b/internal/config/config_test.go
@@ -48,11 +48,13 @@ func TestConfigValidate(t *testing.T) {
func TestConfigHasMethods(t *testing.T) {
cfg := Config{
- PlanToEatAPIKey: "pte-key",
- TrelloAPIKey: "trello-key",
- TrelloToken: "trello-token",
- GoogleCredentialsFile: "/path/to/creds.json",
- GoogleTasksListID: "@default",
+ PlanToEatAPIKey: "pte-key",
+ TrelloAPIKey: "trello-key",
+ TrelloToken: "trello-token",
+ GoogleCredentialsFile: "/path/to/creds.json",
+ GoogleTasksListID: "@default",
+ GoogleOAuthClientID: "client-id",
+ GoogleOAuthClientSecret: "client-secret",
}
if !cfg.HasPlanToEat() {