mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
e18122e88b
* Tests for VFS layer * Small fixes found during testing * Fix Close, Flush and Release behaviour for ReadFileHandle and WriteFileHandle * Fix nil object bugs on File
14 lines
272 B
Go
14 lines
272 B
Go
package vfs
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestErrorError(t *testing.T) {
|
|
assert.Equal(t, "Success", OK.Error())
|
|
assert.Equal(t, "Function not implemented", ENOSYS.Error())
|
|
assert.Equal(t, "Low level error 99", Error(99).Error())
|
|
}
|