Files

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