sq/cli/hostinfo/hostinfo_test.go
Neil O'Toole db55986980
#307: Ingest cache (#354)
- Support for ingest cache, download cache, and progress bars.
2024-01-14 18:45:34 -07:00

18 lines
287 B
Go

package hostinfo_test
import (
"testing"
"github.com/neilotoole/sq/cli/hostinfo"
"github.com/neilotoole/sq/libsq/core/lg/lgt"
)
func TestGet(t *testing.T) {
info := hostinfo.Get()
log := lgt.New(t)
log.Debug("Via slog", "sys", info)
t.Logf("Via string: %s", info.String())
}