mirror of
https://github.com/mgechev/revive.git
synced 2025-01-10 03:17:11 +02:00
13 lines
186 B
Go
13 lines
186 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/mgechev/revive/rule"
|
||
|
)
|
||
|
|
||
|
// TestEmptyLines rule.
|
||
|
func TestEmptyLines(t *testing.T) {
|
||
|
testRule(t, "empty-lines", &rule.EmptyLinesRule{})
|
||
|
}
|