26 lines
573 B
Go
26 lines
573 B
Go
|
package entity
|
||
|
|
||
|
import (
|
||
|
"github.com/jinzhu/gorm"
|
||
|
)
|
||
|
|
||
|
var CountryFixtures = map[string]Country{
|
||
|
"apple-iphone-se": {
|
||
|
ID: "de",
|
||
|
CountrySlug: "germany",
|
||
|
CountryName: "Germany",
|
||
|
CountryDescription: "Country description",
|
||
|
CountryNotes: "Country Notes",
|
||
|
CountryPhoto: nil,
|
||
|
CountryPhotoID: 0,
|
||
|
New: false,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
// CreateCountryFixtures inserts known entities into the database for testing.
|
||
|
func CreateCountryFixtures(db *gorm.DB) {
|
||
|
for _, entity := range CountryFixtures {
|
||
|
db.Create(&entity)
|
||
|
}
|
||
|
}
|