libgocryptfs/tests/reverse/correctness_test.go

18 lines
232 B
Go
Raw Normal View History

package reverse_test
import (
"os"
"testing"
)
func TestLongnameStat(t *testing.T) {
_, err := os.Stat(dirA + "/" + "")
if err != nil {
t.Error(err)
}
_, err = os.Stat(dirA + "/" + "")
if err != nil {
t.Error(err)
}
}