diff options
Diffstat (limited to 'group_test.go')
-rw-r--r-- | group_test.go | 21 |
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]) + } +} |