chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import pytest
|
||||
|
||||
from e2b import Sandbox
|
||||
|
||||
|
||||
@pytest.mark.skip_debug()
|
||||
def test_start_secured(sandbox_factory):
|
||||
sbx = sandbox_factory(timeout=5, secure=True)
|
||||
|
||||
assert sbx.is_running()
|
||||
assert sbx._envd_version is not None
|
||||
assert sbx._envd_access_token is not None
|
||||
|
||||
|
||||
@pytest.mark.skip_debug()
|
||||
def test_connect_to_secured(sandbox_factory):
|
||||
sbx = sandbox_factory(timeout=5, secure=True)
|
||||
|
||||
assert sbx.is_running()
|
||||
assert sbx._envd_version is not None
|
||||
assert sbx._envd_access_token is not None
|
||||
|
||||
sbx_connection = Sandbox.connect(sbx.sandbox_id)
|
||||
assert sbx_connection.is_running()
|
||||
assert sbx_connection._envd_version is not None
|
||||
assert sbx_connection._envd_access_token is not None
|
||||
Reference in New Issue
Block a user