blob: f5b6639c8d98591577e4187ef8e731923e8e6087 [file] [log] [blame]
package org.apache.jenkins.gitpubsub;
import org.junit.Test;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.*;
/**
* @author Stephen Connolly
*/
public class ASFGitSCMFileSystemTest {
@Test
public void smokeTestGetTimestamp() throws Exception {
long timestamp = new ASFGitSCMFileSystem.TelescopeImpl()
.getTimestamp("https://git-wip-us.apache.org/repos/asf/maven.git", null, "maven-3.5.0");
assertThat(timestamp, is(1491248130000L));
}
}