Django REST FrameworkのAPIClientで、配列をbodyに渡すとバグる
code:python
@pytest.mark.django_db
def test_hoge():
client = APIClient()
response = client.put(
"/endpoint",
)
これだと、viewにはjsonで [1, 2] は渡らない。
code:python
@pytest.mark.django_db
def test_hoge():
client = APIClient()
response = client.put(
"/endpoint",
format="json"
)
と指定すると渡る。