package service import ( "path" "testing" "git.server.ky/slackcoder/mirror/internal" "github.com/stretchr/testify/require" ) func TestRsync(t *testing.T) { d := t.TempDir() dst := internal.MustURL(d) src := internal.MustURL("rsync://mirror.cedia.org.ec/gnu/taler") err := Rsync(dst, src) require.NoError(t, err, "rsync") require.FileExists(t, path.Join(dst.Path, "taler-merchant-0.11.3.tar.gz")) }