13 lines
149 B
Go
Raw Normal View History

2024-03-12 14:23:08 +00:00
package tty_test
import (
"os"
"testing"
"git.akyoto.dev/go/color/tty"
)
func TestIsTerminal(t *testing.T) {
tty.IsTerminal(os.Stdout.Fd())
}