Question 6
Consider the code below in a file called test_students.py
test_students.py
import pytest
@pytest.fixturedef students(): return { "names": ["ravi", "raj"], "ages": [12, 9]}
def test_name(students): assert "ravi" in students['names']
def test_age(students): assert students['ages'][0] > 9Which of these is the correct output when the command “pytest -k name” is run in the terminal?