mirror of
https://github.com/mgechev/revive.git
synced 2024-11-28 08:49:11 +02:00
19 lines
351 B
Go
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,
|
|
})
|
|
}
|