mirror of
https://github.com/mgechev/revive.git
synced 2025-05-31 22:49:41 +02:00
12 lines
173 B
Go
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{})
|
|
}
|