mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-05 23:10:16 +00:00
11 lines
155 B
Python
11 lines
155 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def httpbin(httpbin):
|
|
def gen(*url):
|
|
url = '/'.join(url)
|
|
return f"{httpbin.url}/{url}"
|
|
|
|
return gen
|