2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-06 19:10:49 +00:00
restic/internal/ui/termstatus/background_linux_test.go
2021-01-30 20:19:47 +01:00

21 lines
317 B
Go

package termstatus
import (
"os"
"testing"
rtest "github.com/restic/restic/internal/test"
)
func TestIsProcessBackground(t *testing.T) {
tty, err := os.Open("/dev/tty")
if err != nil {
t.Skipf("can't open terminal: %v", err)
}
_, err = isProcessBackground(tty.Fd())
rtest.OK(t, err)
_ = tty.Close()
}