1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-08-25 21:44:20 -04:00
gitea/modules/avatar/avatar_test.go

24 lines
568 B
Go
Raw Normal View History

// Copyright 2016 The Gogs Authors. All rights reserved.
2014-03-23 06:13:23 -04:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package avatar
import (
"testing"
2014-03-23 06:13:23 -04:00
. "github.com/smartystreets/goconvey/convey"
)
func Test_RandomImage(t *testing.T) {
Convey("Generate a random avatar from email", t, func() {
_, err := RandomImage([]byte("gogs@local"))
So(err, ShouldBeNil)
2014-03-24 09:16:00 -04:00
Convey("Try to generate an image with size zero", func() {
_, err := RandomImageSize(0, []byte("gogs@local"))
So(err, ShouldNotBeNil)
})
})
2014-03-24 09:16:00 -04:00
}