probo/models/models_test.go

19 lines
197 B
Go
Raw Normal View History

2023-07-10 13:23:46 +02:00
package models
import (
"testing"
"github.com/remogatto/prettytest"
)
type testSuite struct {
prettytest.Suite
}
func TestRunner(t *testing.T) {
prettytest.Run(
t,
new(testSuite),
)
}