blob: 8b2178b9478c5190002a2f7f6847766b5c8b168a (
plain)
1
2
3
4
5
6
7
8
9
|
import pytest
@pytest.mark.benchmark(group="test_instance")
def test_initialization(soledad_client, monitored_benchmark):
"""
Soledad client object initialization.
"""
monitored_benchmark(soledad_client)
|