edgeboxctl/internal/storage/storage_test.go

15 lines
147 B
Go

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