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

12 lines
173 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
func TestBoolLiteral(t *testing.T) {
testRule(t, "bool_literal_in_expr", &rule.BoolLiteralRule{})
}