Files
scylladb/test/nodetool/test_drain.py
2023-11-07 09:49:56 -05:00

14 lines
265 B
Python

#
# Copyright 2023-present ScyllaDB
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
from rest_api_mock import expected_request
def test_drain(nodetool):
nodetool("drain", expected_requests=[
expected_request("POST", "/storage_service/drain")
])