cse190largecodebases / group-project-bit-converter

group-project-bit-converter created by GitHub Classroom
Other
0 stars 0 forks source link

Complete overhaul of all unit tests #24

Closed MichaelM1 closed 1 year ago

MichaelM1 commented 1 year ago

I did a complete overhaul of all of our unit tests. Before, we were hardcoding every test to use our personal repositories and files. Now, we use Python library tempfile and context managers to create temporary directories and files. These directories/files should be cleaned up automatically after tests are run.

air-wickvu commented 1 year ago

Thanks for the good work! How did you find about the tempfile library? Very good addition.