Files
mev-beta/pkg/validation/input_validator_test.go
2025-09-16 11:05:47 -05:00

13 lines
183 B
Go

package validation
import (
"testing"
"github.com/stretchr/testify/assert"
)
// Basic test to verify package compiles
func TestValidation(t *testing.T) {
assert.True(t, true)
}