import unittest
from buggy_functions import *

# Tests for function reverse.

class TestReverse(unittest.TestCase):

    def test_empty(self):
        self.assertEqual(reverse([]), [],
        "Empty list")

        
    # Add some more (at least three) test cases below - try to make ones 
    # that FAIL in addition to some that might pass.
    # Ask your TA for help if needed.
    
    
    # Try to make a test that checks if the original list was changed (remember
    # that the function should make a *new* list)
    
             
unittest.main(exit=False)
