mirror of
https://github.com/spaytac/orbiter.git
synced 2026-01-22 07:24:40 +00: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)
|
|
}
|