| Index: tests/xtm_conftest.py | 
| diff --git a/tests/xtm_conftest.py b/tests/xtm_conftest.py | 
| index 68e62e344f2b98d096bd8923c91a20c6e3d6b2e3..1eb9107e329dce7c39c03b7f65425373e52ff17a 100644 | 
| --- a/tests/xtm_conftest.py | 
| +++ b/tests/xtm_conftest.py | 
| @@ -75,6 +75,19 @@ def temp_site_function_scope(tmpdir): | 
| return site_dir | 
|  | 
|  | 
| +@pytest.fixture | 
| +def temp_site_url_in_config(tmpdir): | 
| +    out_dir = tmpdir.mkdir('temp_site_url') | 
| +    site_dir = out_dir.join('test_site').strpath | 
| + | 
| +    shutil.copytree(os.path.join(ROOTPATH, 'tests', 'test_site'), site_dir) | 
| + | 
| +    with FileSource(str(site_dir)) as fs: | 
| +        fs.write_to_config('XTM', 'url', 'www.bar.com') | 
| + | 
| +    return site_dir | 
| + | 
| + | 
| @pytest.fixture | 
| def intercept(): | 
| app = get_configured_app() | 
|  |