Codebase list golang-github-renekroon-ttlcache / upstream/2.7.0 evictionreason_enumer_test.go
upstream/2.7.0

Tree @upstream/2.7.0 (Download .tar.gz)

evictionreason_enumer_test.go @upstream/2.7.0

a3e3889
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package ttlcache

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestError(t *testing.T) {
	assert.Equal(t, "key not found", ErrNotFound.Error())

}

func TestEvictionError(t *testing.T) {
	assert.Equal(t, "Removed", Removed.String())
	assert.Equal(t, "Expired", Expired.String())

}