14 lines
389 B
Go
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{}
|
|
}
|