Skip to content

Commit

Permalink
test: Add missing module test (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
carstendietrich authored Oct 31, 2022
1 parent 7f64d42 commit b2edefe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions module_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package form_test

import (
"testing"

"flamingo.me/dingo"
"flamingo.me/form"
)

func TestModule_Configure(t *testing.T) {
if err := dingo.TryModule(new(form.Module)); err != nil {
t.Error(err)
}
}

0 comments on commit b2edefe

Please sign in to comment.