forked from deanishe/awgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicons_test.go
51 lines (47 loc) · 848 Bytes
/
icons_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
// Copyright (c) 2018 Dean Jackson <[email protected]>
// MIT Licence - http://opensource.org/licenses/MIT
package aw
import (
"os"
"testing"
)
func TestIcons(t *testing.T) {
icons := []*Icon{
IconAccount,
IconBurn,
IconClock,
IconColor,
IconColour,
IconEject,
IconError,
IconFavorite,
IconFavourite,
IconGroup,
IconHelp,
IconHome,
IconInfo,
IconNetwork,
IconNote,
IconSettings,
IconSwirl,
IconSwitch,
IconSync,
IconTrash,
IconUser,
IconWarning,
IconWeb,
}
for _, icon := range icons {
if icon.Type != "" {
t.Fatalf("icon.Type is not empty: %v", icon.Value)
}
// Skip path validation on Travis because it's a Linux box
if os.Getenv("TRAVIS") != "" {
continue
}
_, err := os.Stat(icon.Value)
if err != nil {
t.Fatalf("Couldn't stat %v: %v", icon.Value, err)
}
}
}