package tty_test
import (
"os"
"testing"
"git.urbach.dev/go/color/tty"
)
func TestIsTerminal(t *testing.T) {
tty.IsTerminal(os.Stdout.Fd())
}