mirror of
https://github.com/aljazceru/gpt-engineer.git
synced 2025-12-17 12:45:26 +01:00
10 lines
196 B
Python
10 lines
196 B
Python
import pytest
|
|
|
|
from gpt_engineer.ai import AI
|
|
|
|
|
|
@pytest.mark.xfail(reason="Constructor assumes API access")
|
|
def test_ai():
|
|
AI()
|
|
# TODO Assert that methods behave and not only constructor.
|