summaryrefslogtreecommitdiff
path: root/tests/reverse/correctness_test.go
blob: e268815abc20808ff5cb5bc3095fc75af213825d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)
	}
}