blob: c34f9ef8bf99dd1a53a9506785567d6f9d37a6da (
plain) (
tree)
|
|
# Copyright (c) 2023 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "cimple" project.
# For details, see https://github.com/egor-tensin/cimple.
# Distributed under the MIT License.
def test_server_and_workers_run(server_and_workers):
pass
def test_client_version(client, version):
output = client.run('--version')
assert output.endswith(version + '\n')
|