1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-09 10:19:39 +02:00

Report PGPainless version in sop version --backend

This commit is contained in:
Paul Schaub 2023-05-08 16:01:59 +02:00
parent 1523497da4
commit 8fe3a7159d
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
2 changed files with 7 additions and 4 deletions

View file

@ -29,7 +29,7 @@ public class VersionCmdTest extends CLITest {
public void testGetBackendVersion() throws IOException {
ByteArrayOutputStream out = pipeStdoutToStream();
assertSuccess(executeCommand("version", "--backend"));
assertTrue(out.toString().startsWith("Bouncy Castle "));
assertTrue(out.toString().startsWith("PGPainless "));
}
@Test