3bcdf723b0
* adds project with permissions * removes the project resource with permissions * fix the tests
20 lines
722 B
Python
20 lines
722 B
Python
import pytest
|
|
|
|
from specklepy.api.client import SpeckleClient
|
|
from specklepy.logging.exceptions import GraphQLException
|
|
|
|
|
|
@pytest.mark.run()
|
|
class TestWorkspaceResourcePermissions:
|
|
def test_get_projects_with_permissions(self, client: SpeckleClient):
|
|
with pytest.raises(GraphQLException):
|
|
client.workspace.get_projects_with_permissions("not a real id")
|
|
|
|
def test_get_projects_with_permissions_method_exists(self, client: SpeckleClient):
|
|
"""
|
|
test that the method exists with the correct signature.
|
|
"""
|
|
assert hasattr(client.workspace, "get_projects_with_permissions")
|
|
method = client.workspace.get_projects_with_permissions
|
|
assert callable(method)
|