Browse Source

add auth check to TestRepositories_CRUD

Will Norris 12 years ago
parent
commit
b1bf8b4db5
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      tests/integration/repos_test.go

+ 4
- 0
tests/integration/repos_test.go View File

@ -15,6 +15,10 @@ import (
)
func TestRepositories_CRUD(t *testing.T) {
if !checkAuth("TestRepositories_CRUD") {
return
}
// get authenticated user
me, _, err := client.Users.Get("")
if err != nil {


Loading…
Cancel
Save