aboutsummaryrefslogtreecommitdiff
path: root/bridge_test.go
blob: 99a169f6e5e5dcb75d76351c5e14a0f860bf905b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package hue

// "go test"
import (
    "log"
    "testing"
)

func TestNewBridge(t *testing.T) {
    bridge := NewBridge("192.168.1.128", "319b36233bd2328f3e40731b23479207")
    log.Println(bridge)
    
    GetAllLights(bridge)
}