24 lines
600 B
Python
24 lines
600 B
Python
|
from compose_viz.volume import Volume, VolumeType
|
||
|
|
||
|
|
||
|
def test_extend_init_normal() -> None:
|
||
|
try:
|
||
|
v = Volume(source="./foo", target="./bar")
|
||
|
|
||
|
assert v.source == "./foo"
|
||
|
assert v.target == "./bar"
|
||
|
assert v.type == VolumeType.volume
|
||
|
except Exception as e:
|
||
|
assert False, e
|
||
|
|
||
|
|
||
|
def test_extend_with_type() -> None:
|
||
|
try:
|
||
|
v = Volume(source="./foo", target="./bar", type=VolumeType.bind)
|
||
|
|
||
|
assert v.source == "./foo"
|
||
|
assert v.target == "./bar"
|
||
|
assert v.type == VolumeType.bind
|
||
|
except Exception as e:
|
||
|
assert False, e
|