Added storage_test.go file, smoke test

pull/13/head
Paulo Truta 2021-06-12 14:38:38 +00:00
parent 8a30427287
commit 7c14dfee64
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// +build unit
package storage
import (
"fmt"
"testing"
)
func TestGetDevices(t *testing.T) {
result := GetDevices()
fmt.Println(result)
}