1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/test/struct-tag_test.go

13 lines
198 B
Go
Raw Normal View History

2018-07-28 18:07:31 +02:00
package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
// TestStructTag tests struct-tag rule
func TestStructTag(t *testing.T) {
testRule(t, "struct-tag", &rule.StructTagRule{})
}