Spaces:
Build error
Build error
from application import Application | |
def test_application(): | |
app = Application() | |
# Test uploading CSV file | |
app.upload_csv("test.csv") | |
assert app.csv_loader.loaded_files == ["test.csv"] | |
# Test asking question | |
answer = app.ask_question("What is the sum?") | |
assert isinstance(answer, str) | |