1
0
mirror of https://github.com/mgechev/revive.git synced 2025-11-23 22:04:49 +02:00
Files
revive/test/bool_literal_in_expr_test.go

12 lines
178 B
Go
Raw Normal View History

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