АД
уже 4 года работаю только с sqlx и не разу не сталкивался с тем что сделать невозможно (или почти).
возможно не те юз кейсы
Size: a a a
АД
АД
/
Д
/
/
/
АД
АД
/
/
/
/
SP
// Check the status code is what we expect.Или
if status := rr.Code; status != http.StatusForbidden {
t.Errorf("handler returned wrong status code: got %v want %v",
status, http.StatusForbidden)
}
вариант_2:
require.Equal(t, http.StatusForbidden, rr.Code)
SP
DZ