@@ -21,49 +21,49 @@ func TestDefaultBaseDirs(t *testing.T) {
21
21
winDir := `C:\Windows`
22
22
23
23
envSamples := []* envSample {
24
- & envSample {
24
+ {
25
25
name : "XDG_DATA_HOME" ,
26
26
expected : localAppData ,
27
27
actual : & xdg .DataHome ,
28
28
},
29
- & envSample {
29
+ {
30
30
name : "XDG_DATA_DIRS" ,
31
31
expected : []string {roamingAppData , programData },
32
32
actual : & xdg .DataDirs ,
33
33
},
34
- & envSample {
34
+ {
35
35
name : "XDG_CONFIG_HOME" ,
36
36
expected : localAppData ,
37
37
actual : & xdg .ConfigHome ,
38
38
},
39
- & envSample {
39
+ {
40
40
name : "XDG_CONFIG_DIRS" ,
41
41
expected : []string {programData },
42
42
actual : & xdg .ConfigDirs ,
43
43
},
44
- & envSample {
44
+ {
45
45
name : "XDG_CACHE_HOME" ,
46
46
expected : filepath .Join (localAppData , "cache" ),
47
47
actual : & xdg .CacheHome ,
48
48
},
49
- & envSample {
49
+ {
50
50
name : "XDG_RUNTIME_DIR" ,
51
51
expected : localAppData ,
52
52
actual : & xdg .RuntimeDir ,
53
53
},
54
- & envSample {
54
+ {
55
55
name : "XDG_STATE_HOME" ,
56
56
expected : localAppData ,
57
57
actual : & xdg .StateHome ,
58
58
},
59
- & envSample {
59
+ {
60
60
name : "XDG_APPLICATION_DIRS" ,
61
61
expected : []string {
62
62
filepath .Join (roamingAppData , "Microsoft" , "Windows" , "Start Menu" , "Programs" ),
63
63
},
64
64
actual : & xdg .ApplicationDirs ,
65
65
},
66
- & envSample {
66
+ {
67
67
name : "XDG_FONT_DIRS" ,
68
68
expected : []string {
69
69
filepath .Join (winDir , "Fonts" ),
@@ -170,42 +170,42 @@ func TestDefaultUserDirs(t *testing.T) {
170
170
public := filepath .Join (home , "Public" )
171
171
172
172
samples := []* envSample {
173
- & envSample {
173
+ {
174
174
name : "XDG_DESKTOP_DIR" ,
175
175
expected : filepath .Join (home , "Desktop" ),
176
176
actual : & xdg .UserDirs .Desktop ,
177
177
},
178
- & envSample {
178
+ {
179
179
name : "XDG_DOWNLOAD_DIR" ,
180
180
expected : filepath .Join (home , "Downloads" ),
181
181
actual : & xdg .UserDirs .Download ,
182
182
},
183
- & envSample {
183
+ {
184
184
name : "XDG_DOCUMENTS_DIR" ,
185
185
expected : filepath .Join (home , "Documents" ),
186
186
actual : & xdg .UserDirs .Documents ,
187
187
},
188
- & envSample {
188
+ {
189
189
name : "XDG_MUSIC_DIR" ,
190
190
expected : filepath .Join (home , "Music" ),
191
191
actual : & xdg .UserDirs .Music ,
192
192
},
193
- & envSample {
193
+ {
194
194
name : "XDG_PICTURES_DIR" ,
195
195
expected : filepath .Join (home , "Pictures" ),
196
196
actual : & xdg .UserDirs .Pictures ,
197
197
},
198
- & envSample {
198
+ {
199
199
name : "XDG_VIDEOS_DIR" ,
200
200
expected : filepath .Join (home , "Videos" ),
201
201
actual : & xdg .UserDirs .Videos ,
202
202
},
203
- & envSample {
203
+ {
204
204
name : "XDG_TEMPLATES_DIR" ,
205
205
expected : filepath .Join (home , "Templates" ),
206
206
actual : & xdg .UserDirs .Templates ,
207
207
},
208
- & envSample {
208
+ {
209
209
name : "XDG_PUBLICSHARE_DIR" ,
210
210
expected : public ,
211
211
actual : & xdg .UserDirs .PublicShare ,
0 commit comments