mirror of
https://github.com/mgechev/revive.git
synced 2025-11-23 22:04:49 +02:00
26 lines
666 B
Go
26 lines
666 B
Go
package test_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestDotImportsDefault(t *testing.T) {
|
|
testRule(t, "dot_imports_default", &rule.DotImportsRule{}, &lint.RuleConfig{})
|
|
}
|
|
|
|
func TestDotImports(t *testing.T) {
|
|
testRule(t, "dot_imports", &rule.DotImportsRule{}, &lint.RuleConfig{
|
|
Arguments: []any{map[string]any{
|
|
"allowedPackages": []any{"errors", "context", "github.com/BurntSushi/toml"},
|
|
}},
|
|
})
|
|
testRule(t, "dot_imports", &rule.DotImportsRule{}, &lint.RuleConfig{
|
|
Arguments: []any{map[string]any{
|
|
"allowed-packages": []any{"errors", "context", "github.com/BurntSushi/toml"},
|
|
}},
|
|
})
|
|
}
|