1
0
mirror of https://github.com/mgechev/revive.git synced 2025-11-25 22:12:38 +02:00
Files
revive/test/bare_return_test.go

12 lines
167 B
Go
Raw Normal View History

package test_test
import (
"testing"
"github.com/mgechev/revive/rule"
)
func TestBareReturn(t *testing.T) {
testRule(t, "bare_return", &rule.BareReturnRule{})
}