mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 19:35:12 +00:00
14 lines
265 B
Python
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")
|
|
])
|