13 lines
183 B
Go
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)
|
|
}
|