#!/usr/bin/env python3 """ Simple test to verify the test environment is set up correctly. """ def test_example(): """A simple test to verify the test framework works.""" assert True if __name__ == "__main__": test_example() print("Test environment verification passed!")