tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

manyparam.py (169B)


      1 import pytest
      2 
      3 
      4 @pytest.fixture(scope="module", params=range(966))
      5 def foo(request):
      6    return request.param
      7 
      8 
      9 def test_it(foo):
     10    pass
     11 
     12 
     13 def test_it2(foo):
     14    pass