19 lines
295 B
Go
19 lines
295 B
Go
package sway
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetWorkspaces(t *testing.T) {
|
|
workspaces, err := GetWorkspaces(context.Background())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
for _, workspace := range workspaces {
|
|
fmt.Println(workspace.Type, workspace.Output, workspace.Name)
|
|
}
|
|
}
|