aboutsummaryrefslogtreecommitdiff
path: root/lights_test.go
blob: ac73d2e036699d1c5bd4037b83cce1cf4e149262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package hue

import (
    "testing"
    "log"
)

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

func TestGetLight(t *testing.T) {
    bridge := NewBridge("192.168.1.128", "319b36233bd2328f3e40731b23479207")
    light , err := GetLight(bridge, "Bathroom Light")
    if err != nil {
        trace("", err)
    }
    log.Println("LIGHT: ", light)
}