mirror of
https://github.com/gomods/athens
synced 2026-02-09 17:38:10 +00:00
* buffalo app moved to cmd * ooops: * added copy of proxy as olympus * removed buffalo test * added blank endpoint for feed * forgot db config file and storage setup * resolved comments * newlines * resolved conficts
17 lines
211 B
Go
17 lines
211 B
Go
package models_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gobuffalo/suite"
|
|
)
|
|
|
|
type ModelSuite struct {
|
|
*suite.Model
|
|
}
|
|
|
|
func Test_ModelSuite(t *testing.T) {
|
|
as := &ModelSuite{suite.NewModel()}
|
|
suite.Run(t, as)
|
|
}
|