-
Notifications
You must be signed in to change notification settings - Fork 46
/
icons_test.go
54 lines (48 loc) · 913 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
52
53
54
// Copyright (c) 2018 Dean Jackson <[email protected]>
// MIT Licence - http://opensource.org/licenses/MIT
package aw
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
)
func TestIcons(t *testing.T) {
t.Parallel()
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 {
icon := icon
t.Run(icon.Value, func(t *testing.T) {
assert.Equal(t, IconType(""), icon.Type, "icon.Type is not empty")
// Skip path validation on CI because it's a Linux box
if os.Getenv("TRAVIS") != "" {
return
}
_, err := os.Stat(icon.Value)
assert.Nil(t, err, "stat failed")
})
}
}