Added storage_test.go file, smoke test
parent
8a30427287
commit
7c14dfee64
|
@ -0,0 +1,14 @@
|
||||||
|
// +build unit
|
||||||
|
|
||||||
|
package storage
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGetDevices(t *testing.T) {
|
||||||
|
result := GetDevices()
|
||||||
|
|
||||||
|
fmt.Println(result)
|
||||||
|
}
|
Loading…
Reference in New Issue