From 2a1600036584ff549918b924d7ae91564ae011af Mon Sep 17 00:00:00 2001 From: jo Date: Mon, 11 Aug 2025 09:55:21 +0200 Subject: [PATCH] test: improve tests for storage boxes types --- tests/unit/storage_box_types/test_domain.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/unit/storage_box_types/test_domain.py diff --git a/tests/unit/storage_box_types/test_domain.py b/tests/unit/storage_box_types/test_domain.py new file mode 100644 index 00000000..65dbd80f --- /dev/null +++ b/tests/unit/storage_box_types/test_domain.py @@ -0,0 +1,15 @@ +from __future__ import annotations + +import pytest + +from hcloud.storage_box_types import StorageBoxType + + +@pytest.mark.parametrize( + "value", + [ + (StorageBoxType(id=1),), + ], +) +def test_eq(value): + assert value == value