forgejo/modules/avatar/avatar_test.go

20 lines
423 B
Go
Raw Normal View History

// Copyright 2016 The Gogs Authors. All rights reserved.
2014-03-23 14: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 14:13:23 +04:00
2017-02-08 09:29:07 +03:00
"github.com/stretchr/testify/assert"
)
func Test_RandomImage(t *testing.T) {
2017-02-08 09:29:07 +03:00
_, err := RandomImage([]byte("gogs@local"))
assert.NoError(t, err)
2014-03-24 17:16:00 +04:00
2017-02-08 09:29:07 +03:00
_, err = RandomImageSize(0, []byte("gogs@local"))
assert.Error(t, err)
2014-03-24 17:16:00 +04:00
}