mirror of
https://github.com/mgechev/revive.git
synced 2025-11-23 22:04:49 +02:00
* rule: tests for Configure with named options; fix errors * rule: refactor and add tests for ifelse rules * rule: allow lowercased and kebab-cased options * test: update integration tests with lowercased params * docs: update rules descriptions * rule: simplify Configure implementation with one option * gofmt and fix lint * review: add isRuleOption, update grammar in doc, simplify regex Co-authored-by: ccoVeille <3875889+ccoVeille@users.noreply.github.com> --------- Co-authored-by: ccoVeille <3875889+ccoVeille@users.noreply.github.com>
34 lines
776 B
Go
34 lines
776 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/internal/typeparams"
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestReceiverNamingTypeParams(t *testing.T) {
|
|
if !typeparams.Enabled() {
|
|
t.Skip("type parameters are not enabled in the current build environment")
|
|
}
|
|
testRule(t, "receiver_naming_issue_669", &rule.ReceiverNamingRule{})
|
|
}
|
|
|
|
func TestReceiverNamingMaxLength(t *testing.T) {
|
|
testRule(t, "receiver_naming_issue_1040", &rule.ReceiverNamingRule{},
|
|
&lint.RuleConfig{
|
|
Arguments: []any{
|
|
map[string]any{"maxLength": int64(2)},
|
|
},
|
|
},
|
|
)
|
|
testRule(t, "receiver_naming_issue_1040", &rule.ReceiverNamingRule{},
|
|
&lint.RuleConfig{
|
|
Arguments: []any{
|
|
map[string]any{"max-length": int64(2)},
|
|
},
|
|
},
|
|
)
|
|
}
|