mirror of
https://github.com/harness/drone.git
synced 2025-05-11 14:40:05 +08:00
10 lines
120 B
Go
10 lines
120 B
Go
package cli
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestMockCommand_implements(t *testing.T) {
|
|
var _ Command = new(MockCommand)
|
|
}
|