Last active
January 27, 2020 12:55
-
-
Save Atternatt/c513bbbcb9e2746590df0b61b5ed7848 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
@DisplayName("When Exporting only one file then rsync#sync should be called only once") | |
fun exportServerCallRsyncSync() { | |
collectorExporter.export(mockedFile, serverAddress, DirectExecutor, "").get() | |
verify(sync, times(1)).sync(absolutePathMock, serverAddress, "") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment