aboutsummaryrefslogtreecommitdiff
path: root/bridge_test.go
blob: ddf2ae62fa0615a78a78f6eb32222dbb3e185c9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
* bridge_test.go
* GoHue library for Philips Hue
* Copyright (C) 2016 Collin Guarino (Collinux)
* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html
*/

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")
}