c583d7e994
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
19 lines
519 B
Go
19 lines
519 B
Go
package query
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// Example for using database fixtures defined in assets/resources/examples/fixtures.sql
|
|
func TestCamera_FirstOrCreate(t *testing.T) {
|
|
t.Run("iphone-se", func(t *testing.T) {
|
|
camera := entity.NewCamera("iPhone SE", "Apple")
|
|
c := config.TestConfig()
|
|
camera.FirstOrCreate(c.Db())
|
|
assert.GreaterOrEqual(t, camera.ID, uint(1))
|
|
})
|
|
}
|