mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 23:15:43 +01:00
Merge remote-tracking branch 'origin/develop' into feature/browse_commit_with_limit
# Conflicts: # CHANGELOG.md
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package sonia.scm.repository.spi;
|
||||
|
||||
import org.eclipse.jgit.errors.ConfigInvalidException;
|
||||
import org.eclipse.jgit.util.SystemReader;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
class GitConfigContextListenerTest {
|
||||
|
||||
@Test
|
||||
void shouldSetGitConfig() throws IOException, ConfigInvalidException {
|
||||
System.setProperty("scm.git.core.someTestKey", "testValue");
|
||||
new GitConfigContextListener().contextInitialized(null);
|
||||
assertThat(
|
||||
SystemReader.getInstance().getSystemConfig().getString("core", null, "someTestKey")
|
||||
).isEqualTo("testValue");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user