Give travis something to run

This commit is contained in:
Jason Coene
2014-02-02 10:10:21 -06:00
parent 1fee12bc8b
commit 6d4725bf0f
3 changed files with 23 additions and 1 deletions

13
.travis.yml Normal file
View File

@@ -0,0 +1,13 @@
language: go
go:
- 1.1
- 1.2
install:
- export PATH=$PATH:$HOME/gopath/bin
- go get code.google.com/p/go.tools/cmd/cover
- go get -t
script:
- make test

View File

@@ -4,4 +4,4 @@ fmt:
go fmt
test:
go test
go test -cover

9
client_test.go Normal file
View File

@@ -0,0 +1,9 @@
package rtmp
import (
"testing"
)
func TestBuilds(t *testing.T) {
return
}