-
Look at the file write_into_file.py
-
Look at the tests in tests folder
-
Run tests with command:
python3 -m unittest tests/test_write_into_file.py
As you see all your tests are failed
-
Now, complete the functions in write_into_file.py
-
Run tests and all of them should be passed.
-
Compare your answer with mine located in answers/write_into_file.py
-
Congratulations, you have passed first level. Commit and push your changes.
-
Look at the file change_directory.py
-
Look at the test_change_directory.py in tests folder
-
Run tests with command:
python3 -m unittest tests/test_change_directory.py
As you see all your tests are failed
-
Now, complete the functions in change_directory.py
-
Run tests and all of them should be passed.
-
Compare your answer with mine located in answers/change_directory.py
-
Congratulations, you have passed second level. Commit and push your changes.