1
0
mirror of https://github.com/mgechev/revive.git synced 2025-05-31 22:49:41 +02:00
revive/test/superfluous_else_test.go
2024-12-05 13:01:47 +01:00

15 lines
382 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/internal/ifelse"
"github.com/mgechev/revive/lint"
"github.com/mgechev/revive/rule"
)
func TestSuperfluousElse(t *testing.T) {
testRule(t, "superfluous_else", &rule.SuperfluousElseRule{})
testRule(t, "superfluous_else_scope", &rule.SuperfluousElseRule{}, &lint.RuleConfig{Arguments: []any{ifelse.PreserveScope}})
}