2018-10-11 23:52:46 +02:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestEmptyLines rule.
|
|
|
|
func TestEmptyLines(t *testing.T) {
|
2024-11-11 13:39:10 +02:00
|
|
|
testRule(t, "empty_lines", &rule.EmptyLinesRule{})
|
2018-10-11 23:52:46 +02:00
|
|
|
}
|