|
|
@@ -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)
|
|
|
+ }
|
|
|
+}
|