mirror of
https://github.com/octoleo/restic.git
synced 2024-11-29 16:23:59 +00:00
Ensure Print{,f,ln} use global stdout
This commit is contained in:
parent
f6f240573a
commit
4214b1746e
28
cmd/restic/global_test.go
Normal file
28
cmd/restic/global_test.go
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
rtest "github.com/restic/restic/internal/test"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_PrintFunctionsRespectsGlobalStdout(t *testing.T) {
|
||||||
|
gopts := globalOptions
|
||||||
|
defer func() {
|
||||||
|
globalOptions = gopts
|
||||||
|
}()
|
||||||
|
|
||||||
|
buf := bytes.NewBuffer(nil)
|
||||||
|
globalOptions.stdout = buf
|
||||||
|
|
||||||
|
for _, p := range []func(){
|
||||||
|
func() { Println("message") },
|
||||||
|
func() { Print("message\n") },
|
||||||
|
func() { Printf("mes%s\n", "sage") },
|
||||||
|
} {
|
||||||
|
p()
|
||||||
|
rtest.Equals(t, "message\n", buf.String())
|
||||||
|
buf.Reset()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user