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

14 lines
389 B
Go

package cmd
import "testing"
func TestForwardingCommandsExist(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.)
_ = GmailForwardingCmd{}
_ = GmailForwardingListCmd{}
_ = GmailForwardingGetCmd{}
_ = GmailForwardingCreateCmd{}
_ = GmailForwardingDeleteCmd{}
}