Don't close what doesn't exist.

This commit is contained in:
Bruce Marriner 2016-01-11 14:59:24 -06:00
parent 80cfd644b4
commit 591162a2ff

View file

@ -98,7 +98,7 @@ func TestInvalidEmailPass(t *testing.T) {
func TestInvalidPass(t *testing.T) {
if envEmail == "" {
t.Skip("Skipping New(username,InvalidPass), DG_USERNAME not set")
t.Skip("Skipping New(username,InvalidPass), DG_EMAIL not set")
return
}
_, err := New(envEmail, "invalidpassword")
@ -113,7 +113,7 @@ func TestInvalidPass(t *testing.T) {
func TestNewUserPass(t *testing.T) {
if envEmail == "" || envPassword == "" {
t.Skip("Skipping New(username,password), DG_USERNAME or DG_PASSWORD not set")
t.Skip("Skipping New(username,password), DG_EMAIL or DG_PASSWORD not set")
return
}
@ -142,8 +142,10 @@ func TestNewUserPass(t *testing.T) {
}
func TestClose(t *testing.T) {
if dg != nil {
dg.Close()
}
}
// TestNewToken tests the New() function with a Token. This should return
// the same as the TestNewUserPass function.