Browse Source

client: test assertStatusCode

Brian Waldon 11 years ago
parent
commit
052521eaf1
1 changed files with 10 additions and 0 deletions
  1. 10 0
      client/members_test.go

+ 10 - 0
client/members_test.go

@@ -83,3 +83,13 @@ func TestMembersAPIActionRemove(t *testing.T) {
 		t.Error(err.Error())
 	}
 }
+
+func TestAssertStatusCode(t *testing.T) {
+	if err := assertStatusCode(400, 404); err == nil {
+		t.Errorf("assertStatusCode failed to detect conflict in 400 vs 404")
+	}
+
+	if err := assertStatusCode(400, 400); err != nil {
+		t.Errorf("assertStatusCode found conflict in 400 vs 400: %v", err)
+	}
+}