Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failing tests in DataHandler.jl #140

Open
heileman opened this issue Jul 30, 2023 · 1 comment
Open

Failing tests in DataHandler.jl #140

heileman opened this issue Jul 30, 2023 · 1 comment

Comments

@heileman
Copy link
Contributor

The read/write invariance tests are now failing (currently commented out in test file). I believe this may have occurred with the read_csv() function was updated.

@heileman
Copy link
Contributor Author

heileman commented Jul 30, 2023

Failing test:
curric1 = Curriculum("Underwater Basket Weaving", [A,B,C,D,E,F], institution="ACME State University", CIP="445786")
# write curriculum to secondary storage
@test write_csv(curric1, "./UBW-curric.csv") == true  # this test passes
# read from same location
curric2 = read_csv("./UBW-curric.csv") 
@test string(curric1) == string(curric2)  # read/write invariance test, this test now fails 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant