9 lines
136 B
Go
9 lines
136 B
Go
|
package command
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestCatalogCommand_noTabs(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
assertNoTabs(t, new(CatalogCommand))
|
||
|
}
|