Files
gpt-engineer/tests/test_ai.py

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.