ipld-eth-server/vendor/github.com/ipfs/go-ipfs/cmd/ipfswatch/ipfswatch_test.go
2019-12-02 13:24:46 -06:00

14 lines
372 B
Go

package main
import (
"testing"
"github.com/ipfs/go-ipfs/thirdparty/assert"
)
func TestIsHidden(t *testing.T) {
assert.True(IsHidden("bar/.git"), t, "dirs beginning with . should be recognized as hidden")
assert.False(IsHidden("."), t, ". for current dir should not be considered hidden")
assert.False(IsHidden("bar/baz"), t, "normal dirs should not be hidden")
}