mirror of
https://github.com/FlipsideCrypto/sdk.git
synced 2026-02-06 10:46:43 +00:00
17 lines
418 B
Python
17 lines
418 B
Python
from shroomdk.models.query_status import (
|
|
QueryStatus,
|
|
QueryStatusError,
|
|
QueryStatusFinished,
|
|
QueryStatusPending,
|
|
)
|
|
|
|
|
|
def test_query_status():
|
|
assert QueryStatusFinished == "finished"
|
|
assert QueryStatusPending == "pending"
|
|
assert QueryStatusError == "error"
|
|
|
|
assert QueryStatus.Finished == "finished"
|
|
assert QueryStatus.Pending == "pending"
|
|
assert QueryStatus.Error == "error"
|