2024-03-12 15:23:08 +01:00

13 lines
149 B
Go

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