mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-12-23 03:17:58 +01:00
Add DetachInbandSignatureAndMessageCmd skeletton
This commit is contained in:
parent
788c82531e
commit
40dfa6528a
2 changed files with 12 additions and 1 deletions
|
@ -0,0 +1,11 @@
|
||||||
|
package sop.cli.picocli.commands;
|
||||||
|
|
||||||
|
import picocli.CommandLine;
|
||||||
|
import sop.exception.SOPGPException;
|
||||||
|
|
||||||
|
@CommandLine.Command(name = "detach-inband-signature-and-message",
|
||||||
|
description = "Split a clearsigned message",
|
||||||
|
exitCodeOnInvalidInput = SOPGPException.UnsupportedOption.EXIT_CODE)
|
||||||
|
public class DetachInbandSignatureAndMessageCmd implements Runnable {
|
||||||
|
|
||||||
|
}
|
|
@ -58,7 +58,7 @@ public class EncryptCmdTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ExpectSystemExitWithStatus(19)
|
@ExpectSystemExitWithStatus(19)
|
||||||
public void missingPasswordAndCertFileCauseExit19() {
|
public void missingBothPasswordAndCertFileCauseExit19() {
|
||||||
SopCLI.main(new String[] {"encrypt", "--no-armor"});
|
SopCLI.main(new String[] {"encrypt", "--no-armor"});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue