Codebase list golang-github-renekroon-ttlcache / 881e1861-82ae-40fe-b495-618bf342159d/main evictionreason_enumer_test.go
881e1861-82ae-40fe-b495-618bf342159d/main

Tree @881e1861-82ae-40fe-b495-618bf342159d/main (Download .tar.gz)

evictionreason_enumer_test.go @881e1861-82ae-40fe-b495-618bf342159d/main

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

}