2019-12-11 16:55:18 +01:00
|
|
|
package entity
|
2019-12-04 15:14:04 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2019-12-11 14:10:20 +01:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2019-12-04 15:14:04 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewPhotoAlbum(t *testing.T) {
|
|
|
|
t.Run("new album", func(t *testing.T) {
|
|
|
|
m := NewPhotoAlbum("ABC", "EFG")
|
|
|
|
assert.Equal(t, "ABC", m.PhotoUUID)
|
|
|
|
assert.Equal(t, "EFG", m.AlbumUUID)
|
|
|
|
})
|
|
|
|
}
|