aboutsummaryrefslogtreecommitdiff
path: root/bridge_test.go
blob: 546470c6def83007a1d6a2f6bdcf207bfe57b63f (plain)
1
2
3
4
5
6
7
8
9
10
11
package hue

import (
    "log"
    "testing"
)

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