mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 09:08:31 +00:00
- Add crewai workspace member - Fix vcr cassette paths and restore test dirs - Resolve ci failures and update linter/pytest rules
16 lines
388 B
Python
16 lines
388 B
Python
"""Test that all public API classes are properly importable."""
|
|
|
|
|
|
def test_task_output_import():
|
|
"""Test that TaskOutput can be imported from crewai."""
|
|
from crewai import TaskOutput
|
|
|
|
assert TaskOutput is not None
|
|
|
|
|
|
def test_crew_output_import():
|
|
"""Test that CrewOutput can be imported from crewai."""
|
|
from crewai import CrewOutput
|
|
|
|
assert CrewOutput is not None
|