Cloudreve/pkg/util/io_test.go

13 lines
208 B
Go
Raw Normal View History

2019-12-05 19:01:51 +08:00
package util
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestExists(t *testing.T) {
asserts := assert.New(t)
asserts.True(Exists("io_test.go"))
asserts.False(Exists("io_test.js"))
}