1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-28 08:49:11 +02:00
revive/test/dot_imports_test.go
2024-11-11 19:31:18 +01:00

19 lines
351 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/lint"
"github.com/mgechev/revive/rule"
)
func TestDotImports(t *testing.T) {
args := []any{map[string]any{
"allowedPackages": []any{"errors", "context", "github.com/BurntSushi/toml"},
}}
testRule(t, "import_dot", &rule.DotImportsRule{}, &lint.RuleConfig{
Arguments: args,
})
}