aboutsummaryrefslogtreecommitdiff
path: root/schedule_test.go
diff options
context:
space:
mode:
authorCollin Guarino <collin.guarino@gmail.com>2016-02-14 18:56:39 -0500
committerCollin Guarino <collin.guarino@gmail.com>2016-02-14 18:56:39 -0500
commit476acf944f7f859a5ad2e7003f82d3f96fbff1a5 (patch)
treedeb9943ea5846202634c3bf72958b60f407940d4 /schedule_test.go
parent1f936737809a85281091496e8668bda56214d255 (diff)
Implemented GetSchedules func with new Schedule struct.
Diffstat (limited to 'schedule_test.go')
-rw-r--r--schedule_test.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/schedule_test.go b/schedule_test.go
index 438d3fd..43d6e70 100644
--- a/schedule_test.go
+++ b/schedule_test.go
@@ -8,5 +8,10 @@
package hue
import (
- //"testing"
+ "testing"
)
+
+func TestGetSchedules(t *testing.T) {
+ bridge, _ := NewBridge("192.168.1.128", "427de8bd6d49f149c8398e4fc08f")
+ _, _ = bridge.GetSchedules()
+}