2
0
mirror of synced 2025-02-24 06:38:14 +00:00
torrent/util/dirwatch/dirwatch_test.go
2018-01-06 16:53:40 +11:00

22 lines
356 B
Go

package dirwatch
import (
"io/ioutil"
"os"
"testing"
"github.com/stretchr/testify/require"
)
func TestDirwatch(t *testing.T) {
tempDirName, err := ioutil.TempDir("", "")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tempDirName)
t.Logf("tempdir: %q", tempDirName)
dw, err := New(tempDirName)
require.NoError(t, err)
defer dw.Close()
}