Sign in
cobalt
/
cobalt
/
e83fce97d7405b0b5e569d961aa431b1112ac6ac
/
.
/
src
/
third_party
/
web_platform_tests
/
tools
/
pytest
/
bench
/
manyparam.py
blob: d2bca0e8acd1e394cd3a85852512bdab181bb82e [
file
] [
log
] [
blame
]
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