Verify access to test function name using pytest fixture request object
Preconditions (2)
Step 1: Create a fixture that accepts the 'request' object as a parameter
Step 2: Inside the fixture, get the name of the test function using request.node.name
Step 3: Return the test function name from the fixture
Step 4: Create a test function that uses this fixture
Step 5: Assert inside the test that the fixture returns the correct test function name
✅ Expected Result: The test passes, confirming the fixture correctly accessed the test function name via the request object