Follow the order

Report a typo

Arrange the parts of the code in the correct order and with the correct indents.

Note that comments are considered bodies of the methods in this task, so remember to indent them correctly. The order of methods inside TestSomeUnit should follow the order of execution of the methods.

Tip: Don't forget that comments in this code should have indents, too.

Reorder lines using drag or arrows. Adjust indentation with left buttons
                # creates a text file
              
                # uses a text file
              
                class TestSomeUnit(unittest.TestCase):
              
                def test_file_methods(self):
              
                # deletes a text file
              
                def setUp(self):
              
                def tearDown(self):
              
___

Create a free account to access the full topic