blob: b9b0137fa41dc58c409804df834ad37d3e198620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package hue
import (
"testing"
)
func TestNewBridge(t *testing.T) {
NewBridge("192.168.1.128", "319b36233bd2328f3e40731b23479207")
}
func TestCreateUser(t *testing.T) {
CreateUser(NewBridge("192.168.1.128", "319b36233bd2328f3e40731b23479207"), "linux")
}
|