mirror of
https://github.com/larksuite/cli.git
synced 2026-07-03 14:02:43 +08:00
18 lines
357 B
Go
18 lines
357 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package task
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestShortcutsRegistration(t *testing.T) {
|
|
convey.Convey("Shortcuts() returns all commands", t, func() {
|
|
list := Shortcuts()
|
|
convey.So(len(list), convey.ShouldBeGreaterThan, 0)
|
|
})
|
|
}
|