mirror of
https://github.com/mgechev/revive.git
synced 2025-02-09 13:37:14 +02:00
20 lines
409 B
Go
20 lines
409 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/mgechev/revive/lint"
|
||
|
"github.com/mgechev/revive/rule"
|
||
|
)
|
||
|
|
||
|
func TestContextAsArgument(t *testing.T) {
|
||
|
testRule(t, "context-as-argument", &rule.ContextAsArgumentRule{}, &lint.RuleConfig{
|
||
|
Arguments: []interface{}{
|
||
|
map[string]interface{}{
|
||
|
"allowTypesBefore": "AllowedBeforeType,AllowedBeforeStruct,*AllowedBeforePtrStruct,*testing.T",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
)
|
||
|
}
|