mirror of
https://github.com/octoleo/restic.git
synced 2024-11-14 17:24:10 +00:00
29 lines
494 B
Go
29 lines
494 B
Go
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()
|
|
}
|
|
}
|