You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
smug/config_test.go

47 lines
714 B
Go

package main
import (
"reflect"
"testing"
)
func TestParseConfig(t *testing.T) {
yaml := `
session: ${session}
windows:
- layout: tiled
commands:
- echo 1
panes:
- commands:
- echo 2
type: horizontal`
config, err := ParseConfig(yaml, map[string]string{
"session": "test",
})
if err != nil {
t.Fatal(err)
}
expected := Config{
Session: "test",
Windows: []Window{
Window{
Layout: "tiled",
Commands: []string{"echo 1"},
Panes: []Pane{
Pane{
Type: "horizontal",
Commands: []string{"echo 2"},
},
},
},
},
}
if !reflect.DeepEqual(expected, config) {
t.Fatalf("expected %v, got %v", expected, config)
}
}