gogcli/internal/cmd/gmail_delegates_test.go
2025-12-31 17:24:31 +01:00

14 lines
380 B
Go

package cmd
import "testing"
func TestDelegatesCommandsExist(t *testing.T) {
// Unit tests for the actual API calls live in integration; here we just ensure
// the commands exist and are properly structured. (Compile-time coverage.)
_ = GmailDelegatesCmd{}
_ = GmailDelegatesListCmd{}
_ = GmailDelegatesGetCmd{}
_ = GmailDelegatesAddCmd{}
_ = GmailDelegatesRemoveCmd{}
}