mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 01:20:26 +08:00
17 lines
354 B
Go
17 lines
354 B
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package caches
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/iwind/TeaGo/assert"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestCanIgnoreErr(t *testing.T) {
|
||
|
|
a := assert.NewAssertion(t)
|
||
|
|
|
||
|
|
a.IsTrue(CanIgnoreErr(ErrFileIsWriting))
|
||
|
|
a.IsTrue(CanIgnoreErr(NewCapacityError("over capcity")))
|
||
|
|
a.IsFalse(CanIgnoreErr(ErrNotFound))
|
||
|
|
}
|