This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add
workspaces.create
method (#130)
* Add workspaces.create method * add abc for workspaces for create, add test for workspaces create * various fixes from testing * add regression --------- Co-authored-by: Severin Ibarluzea <[email protected]>
- Loading branch information
1 parent
71db16e
commit 75713b1
Showing
3 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from seamapi import Seam | ||
|
||
|
||
def test_workspaces_create(seam: Seam): | ||
workspace = seam.workspaces.create( | ||
workspace_name="Test Workspace", connect_partner_name="Example Partner" | ||
) | ||
|
||
assert workspace.workspace_id |