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)
 | 
						|
	}
 | 
						|
}
 |