Skip to content

Commit 918de44

Browse files
authored
test: missing domain tests for storage boxes types (#530)
- Test equality for the storage box type domain.
1 parent e064c26 commit 918de44

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from __future__ import annotations
2+
3+
import pytest
4+
5+
from hcloud.storage_box_types import StorageBoxType
6+
7+
8+
@pytest.mark.parametrize(
9+
"value",
10+
[
11+
(StorageBoxType(id=1),),
12+
],
13+
)
14+
def test_eq(value):
15+
assert value == value

0 commit comments

Comments
 (0)