aboutsummaryrefslogtreecommitdiff
path: root/group_test.go
diff options
context:
space:
mode:
authorCollin Guarino <collin.guarino@gmail.com>2016-02-14 22:54:26 -0500
committerCollin Guarino <collin.guarino@gmail.com>2016-02-14 22:54:26 -0500
commit5755c3e714041281a5224d4eaa540b86ddb420af (patch)
treefd6ecf7f15e1aaa77e95f907c041e4bebc85b7ec /group_test.go
parent8965587341cfe39f97d36eda052aae4d0040526e (diff)
Added base functions and struct for groups.
Diffstat (limited to 'group_test.go')
-rw-r--r--group_test.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/group_test.go b/group_test.go
new file mode 100644
index 0000000..8fcbd09
--- /dev/null
+++ b/group_test.go
@@ -0,0 +1,21 @@
+/*
+* group_test.go
+* GoHue library for Philips Hue
+* Copyright (C) 2016 Collin Guarino (Collinux) collin.guarino@gmail.com
+* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html
+*/
+
+package hue
+
+import (
+ "testing"
+ "fmt"
+)
+
+func TestGetGroups(t *testing.T) {
+ bridge, _ := NewBridge("192.168.1.128", "427de8bd6d49f149c8398e4fc08f")
+ groups, _ := bridge.GetGroups()
+ for group := range groups {
+ fmt.Println(groups[group])
+ }
+}