mirror of
https://github.com/mgechev/revive.git
synced 2025-01-10 03:17:11 +02:00
12 lines
156 B
Go
12 lines
156 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/mgechev/revive/rule"
|
||
|
)
|
||
|
|
||
|
func TestDeepExit(t *testing.T) {
|
||
|
testRule(t, "deep-exit", &rule.DeepExitRule{})
|
||
|
}
|