mirror of https://github.com/shirou/gopsutil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
247 B
Go
19 lines
247 B
Go
11 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestDisk_usage(t *testing.T) {
|
||
|
disk := NewDisk()
|
||
|
|
||
|
v, err := disk.Disk_usage("/")
|
||
|
if err != nil {
|
||
|
t.Errorf("error %v", err)
|
||
|
}
|
||
|
d, _ := json.Marshal(v)
|
||
|
fmt.Printf("%s\n", d)
|
||
|
}
|