travis-ci
6 of 6 new or added lines in 3 files covered. (100.0%)
3433 of 3817 relevant lines covered (89.94%)
273.28 hits per line
1 |
package filesystem
|
|
2 |
|
|
3 |
type filesystemInfo struct { |
|
4 |
Device string
|
|
5 |
Total int64
|
|
6 |
Used int64
|
|
7 |
Available int64
|
|
8 |
UsedPercent float64
|
|
9 |
Mountpoint string
|
|
10 |
} |
|
11 |
|
|
12 |
func (fi filesystemInfo) isRoot() bool { |
12 only 427.1 and 427.2 ✔ |
13 |
return fi.Mountpoint == "/" |
12 only 427.1 and 427.2 ✔ |
14 |
} |
12 only 427.1 and 427.2 ✔ |