1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/test/bare-return_test.go
SalvadorC 745bcf65aa bare-return (first working version) (#117)
New rule bare-return
2019-04-17 22:55:52 +02:00

12 lines
162 B
Go

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