James Walker
4c54f1d449
All checks were successful
continuous-integration/drone/push Build is passing
Closes #2 Reviewed-on: #10
13 lines
184 B
Go
13 lines
184 B
Go
package tmux
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestListSessions(t *testing.T) {
|
|
m := CreateTmux(true)
|
|
if _, err := m.ListSessions(); err != nil {
|
|
t.Fatalf("ListSessions: %s", err)
|
|
}
|
|
}
|