-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathutils_test.go
More file actions
47 lines (33 loc) · 833 Bytes
/
utils_test.go
File metadata and controls
47 lines (33 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package parser
import (
"reflect"
"testing"
)
func TestCommandCombing(t *testing.T) {
t.Parallel()
expected := []string{"apps:create", "test", "foo"}
actual := combineCommand([]string{"apps", "create", "test", "foo"})
if !reflect.DeepEqual(expected, actual) {
t.Errorf("Expected %s, Got %s", expected, actual)
}
}
func TestSafeGet(t *testing.T) {
t.Parallel()
expected := "foo"
test := make(map[string]interface{}, 1)
test["test"] = "foo"
actual := safeGetValue(test, "test")
if expected != actual {
t.Errorf("Expected %s, Got %s", expected, actual)
}
}
func TestSafeGetNil(t *testing.T) {
t.Parallel()
expected := ""
test := make(map[string]interface{}, 1)
test["test"] = nil
actual := safeGetValue(test, "test")
if expected != actual {
t.Errorf("Expected %s, Got %s", expected, actual)
}
}