Codebase list golang-github-renekroon-ttlcache / run/e2679ce6-e741-40c3-8566-46df2093ca22/main evictionreason_enumer_test.go
run/e2679ce6-e741-40c3-8566-46df2093ca22/main

Tree @run/e2679ce6-e741-40c3-8566-46df2093ca22/main (Download .tar.gz)

evictionreason_enumer_test.go @run/e2679ce6-e741-40c3-8566-46df2093ca22/mainraw · history · blame

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())

}