This repository has been archived on 2024-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
orion/openwrt/uci_struct_test.go

12 lines
178 B
Go
Raw Normal View History

package openwrt
import (
"testing"
)
func TestUCIStruct(t *testing.T) {
exec := createMockExecutor("", "", 1)
uci := NewUCIWithExecutor(exec)
uci.Add("wireless", "test")
}