Implement TranserPacmanCache

This commit is contained in:
AustrianToast
2023-06-06 21:21:20 +02:00
parent 3d512f25ab
commit 205ef71dcd
2 changed files with 32 additions and 1 deletions

View File

@ -0,0 +1,13 @@
using Pacserver.Utils;
namespace Pacserver.Tests;
public class TranserFilesTest {
[Fact]
public void TransferPacmanCacheTest() {
string result = PacserverUtils.determinePacmanCacheDirectory();
PacserverUtils.TransferPacmanCache();
//Assert.NotEmpty(Directory.GetFiles("/home/rene/test/"));
}
}