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.
|
package openwrt
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestUCIStruct(t *testing.T) {
|
|
exec := createMockExecutor("", "", 1)
|
|
uci := NewUCIWithExecutor(exec)
|
|
uci.Add("wireless", "test")
|
|
}
|