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