mirror of
https://github.com/servo/servo.git
synced 2025-07-10 08:53:41 +01:00
12 lines
167 B
Python
12 lines
167 B
Python
|
|
import pytest
|
|
|
|
@pytest.fixture(scope='module', params=range(966))
|
|
def foo(request):
|
|
return request.param
|
|
|
|
def test_it(foo):
|
|
pass
|
|
def test_it2(foo):
|
|
pass
|
|
|