-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49f1ca0
commit 79ae603
Showing
4 changed files
with
44 additions
and
10 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,15 @@ | ||
import pytest | ||
from pydantic import ValidationError | ||
|
||
from starbridge.web import Resource | ||
|
||
|
||
def test_web_types_resource_exactly_one(): | ||
with pytest.raises(ValidationError): | ||
Resource( | ||
url="https://example.com", type="invalid", text="Hello World", blob=b"\0" | ||
) | ||
with pytest.raises(ValidationError): | ||
Resource(url="https://example.com", type="invalid", text=None, blob=None) | ||
Resource(url="https://example.com", type="invalid", text="Hello World", blob=None) | ||
Resource(url="https://example.com", type="invalid", text=None, blob=b"\0") |
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