8ccaaff4e5
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
28 lines
638 B
Go
28 lines
638 B
Go
package entity
|
|
|
|
import "time"
|
|
|
|
var date = time.Date(2050, 3, 6, 2, 6, 51, 0, time.UTC)
|
|
|
|
type LinkMap map[string]Link
|
|
|
|
var LinkFixtures = LinkMap{
|
|
"1jxf3jfn2k": {
|
|
LinkToken: "1jxf3jfn2k",
|
|
LinkPassword: "somepassword",
|
|
LinkExpires: &date,
|
|
ShareUUID: "4",
|
|
CanComment: true,
|
|
CanEdit: false,
|
|
CreatedAt: time.Date(2020, 3, 6, 2, 6, 51, 0, time.UTC),
|
|
UpdatedAt: time.Date(2020, 3, 28, 14, 6, 0, 0, time.UTC),
|
|
DeletedAt: nil,
|
|
},
|
|
}
|
|
|
|
// CreateLinkFixtures inserts known entities into the database for testing.
|
|
func CreateLinkFixtures() {
|
|
for _, entity := range LinkFixtures {
|
|
Db().Create(&entity)
|
|
}
|
|
}
|