20 lines
302 B
Go
20 lines
302 B
Go
package godot
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/golangci/golangci-lint/test/testshared/integration"
|
|
)
|
|
|
|
func TestFromTestdata(t *testing.T) {
|
|
integration.RunTestdata(t)
|
|
}
|
|
|
|
func TestFix(t *testing.T) {
|
|
integration.RunFix(t)
|
|
}
|
|
|
|
func TestFixPathPrefix(t *testing.T) {
|
|
integration.RunFixPathPrefix(t)
|
|
}
|