mirror of
https://github.com/elyby/chrly.git
synced 2024-11-19 11:43:06 +05:30
15 lines
263 B
Go
15 lines
263 B
Go
package mojangtextures
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNilProvider_GetForUsername(t *testing.T) {
|
|
provider := &NilProvider{}
|
|
result, err := provider.GetForUsername("username")
|
|
assert.Nil(t, result)
|
|
assert.Nil(t, err)
|
|
}
|