Verify pytest test function naming conventions
Preconditions (2)
Step 1: Create a test function with a name starting with 'test_'
Step 2: Create another function without 'test_' prefix
Step 3: Run pytest on the test file
Step 4: Observe which functions pytest executes as tests
✅ Expected Result: pytest runs only the function(s) whose names start with 'test_' and ignores others