mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-05-21 22:38:25 +02:00
Start CLI tests
This commit is contained in:
parent
e3dfea1991
commit
ddd5ce2c21
4 changed files with 50 additions and 2 deletions
cmd
26
cmd/app_test.go
Normal file
26
cmd/app_test.go
Normal file
|
@ -0,0 +1,26 @@
|
|||
package cmd
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"github.com/urfave/cli/v2"
|
||||
"io"
|
||||
"log"
|
||||
"os"
|
||||
"testing"
|
||||
)
|
||||
|
||||
// This only contains helpers so far
|
||||
|
||||
func TestMain(m *testing.M) {
|
||||
log.SetOutput(io.Discard)
|
||||
os.Exit(m.Run())
|
||||
}
|
||||
|
||||
func newTestApp() (*cli.App, *bytes.Buffer, *bytes.Buffer, *bytes.Buffer) {
|
||||
var stdin, stdout, stderr bytes.Buffer
|
||||
app := New()
|
||||
app.Reader = &stdin
|
||||
app.Writer = &stdout
|
||||
app.ErrWriter = &stderr
|
||||
return app, &stdin, &stdout, &stderr
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue