-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvin_test.go
56 lines (54 loc) · 937 Bytes
/
vin_test.go
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
48
49
50
51
52
53
54
55
56
package vin
import (
"reflect"
"testing"
)
func TestVin_ReadToml(t *testing.T) {
type fields struct {
Apps []App
vinDir string
}
type args struct {
path string
}
tests := []struct {
name string
fields fields
args args
after *Vin
wantErr bool
}{
{
name: "",
fields: fields{
Apps: []App{},
vinDir: "",
},
args: args{
path: "testdata/vin.toml",
},
after: &Vin{
Apps: []App{
{Repo: "cli/cli"},
},
vinDir: "",
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
v := &Vin{
Apps: tt.fields.Apps,
vinDir: tt.fields.vinDir,
}
if err := v.ReadTOML(tt.args.path); (err != nil) != tt.wantErr {
t.Errorf("Vin.ReadToml() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(v, tt.after) {
t.Errorf("Vin.ReadToml() = %v, want %v", v, tt.after)
}
})
}
}