mirror of
https://github.com/mgechev/revive.git
synced 2025-02-03 13:11:25 +02:00
15 lines
279 B
Go
15 lines
279 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/mgechev/revive/lint"
|
||
|
"github.com/mgechev/revive/rule"
|
||
|
)
|
||
|
|
||
|
func TestCommentSpacings(t *testing.T) {
|
||
|
testRule(t, "comment-spacings", &rule.CommentSpacingsRule{}, &lint.RuleConfig{
|
||
|
Arguments: []interface{}{"myOwnDirective"}},
|
||
|
)
|
||
|
}
|