mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 12:04:11 +08:00
5065c422b4
This was factored from fstest as we were including the testing
enviroment into the main binary because of it.
This was causing opening the browser to fail because of 8243ff8bc8
.
14 lines
180 B
Go
14 lines
180 B
Go
package random
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestString(t *testing.T) {
|
|
for i := 0; i < 100; i++ {
|
|
assert.Equal(t, i, len(String(i)))
|
|
}
|
|
}
|