1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/app/module_validator_test.go
2020-10-08 20:29:50 -04:00

12 lines
182 B
Go

package app
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_NewModuleValidator(t *testing.T) {
assert.IsType(t, &ModuleValidator{}, NewModuleValidator())
}