aboutsummaryrefslogtreecommitdiff
path: root/bridge_test.go
blob: 02f44bc254ef69f79a958e13fb99264413aa023b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
* bridge_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"
)

func TestCreateUser(t *testing.T) {
    bridge, _ := NewBridge("192.168.1.128", "427de8bd6d49f149c8398e4fc08f")
    bridge.CreateUser("test")
    //bridge.DeleteUser(bridge.Username)
}