Files
workon/tmux/tmux_test.go
T

13 lines
184 B
Go
Raw Normal View History

2022-09-13 22:37:21 -04:00
package tmux
import (
"testing"
)
func TestListSessions(t *testing.T) {
m := CreateTmux(true)
if _, err := m.ListSessions(); err != nil {
t.Fatalf("ListSessions: %s", err)
}
}