2025-11-15 20:24:16 +02:00
|
|
|
package test_test
|
2018-08-23 20:10:17 +02:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestBoolLiteral(t *testing.T) {
|
2024-11-11 13:39:10 +02:00
|
|
|
testRule(t, "bool_literal_in_expr", &rule.BoolLiteralRule{})
|
2018-08-23 20:10:17 +02:00
|
|
|
}
|